1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| <h4 style="font-weight:bold;color:#559035;background-color:#CBD9AD;">@domain_libelle</h4>
}
<table class="table table-striped" style="background-color:#e7efd1 " id="@domain_libelle-tabela">
<tr style=" font-weight:bold; color:white; background-color: #54734C;height:3px;font-family:Arial;font-size:20px;text-align:center; margin: 0px; width:1075px; border: 1px solid black; right:30px;">
<th style="text-align:center;max-width:10px">N°</th>
<th style="text-align:center;max-width:70%">Contenu</th>
<th style="text-align:center;max-width:20px">Conformite</th>
</tr>
<!-- Déclaration variables- (chemin empreinté) recherche de la valeur Texte-ID dans la BD entiere// chaque ligne de chaque colonne-->
@{
var texte = Veille_Reglemaintere_Env.Models.Textes_Esqua.Textes_Manager.getTextebyId(item.Value.Texte_ID);
<!-- Affiche les 2 variables recherchées// pas besoin d'écrire, il est propose </!-->
var texte_num = texte.Texte_Thematiques + "-" + texte.Fiche_Synthese_Numero;
}
<!--Affiche pour l'utilisateur les valeurs demandées/corps du tableau-->
<tr>
<TD style="max-width:10px">@texte_num</TD>
<TD style="max-width:70px">Texte complet</TD>
<TD style="max-width:20px">
@Veille_Reglemaintere_Env.Models.Gestion_arborescences.Process_Manager.Instance.get_Process_with_ID(item.Value.Process_ID_Ref)
<!-- Déclaration de mes variables qui garde toujours la même orthographie pour être retrouvées// dans la colonne Conformite //ligne par ligne-->
@{
string Nom_conformite = "";
if (item.Value.Conformite == "C")
{
Nom_conformite = "Conforme";
}
else if (item.Value.Conformite == "NC")
{
Nom_conformite = "Non Conforme";
}
else if (item.Value.Conformite == "R")
{
Nom_conformite = "Remarque";
}
else if (item.Value.Conformite == "AE")
{
Nom_conformite = "A évaluer";
}
else if (item.Value.Conformite == "NCS")
{
Nom_conformite = "Non_Conformite_Significative";
}
else if (item.Value.Conformite == "")
{
Nom_conformite = "";
}
}
@Nom_conformite
<br>
<!--Déclaration de ma variable DataTime// peut s'afficher brut sans modification dons pas besoin de fonction
// elle sécrit puis se déclare en dessous systématiquement-->
@{
var DataTime = item.Value.Date_Debut.Date.ToString("dd/MM/yyyy");
}
@DataTime
<br>
<!--Identiquement à la variable DataTime-->
@{
HtmlString Commentaire = new HtmlString(item.Value.Commentaire);}@Commentaire
<br>
</TD>
</tr>
</table>
domaines.Add(domain_libelle);
}
}
</div>
@} |
Partager