@Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.HiddenFor(model => model.ID_PRESTATION, htmlAttributes: new { @id = "IDPRESATION1" })
@Html.LabelFor(model => model.ID_TYPEDEPRESTATION, "TYPE DE PRESTATION", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("ID_TYPEDEPRESTATION", null, htmlAttributes: new { @class = "form-control" , @id = "TYPEPRESATION1" })
@Html.ValidationMessageFor(model => model.ID_TYPEDEPRESTATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.CODE_ACTE, "ACTE", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("CODE_ACTE", null, htmlAttributes: new { @class = "form-control", @value = "" , @id = "ACTE1" })
@Html.ValidationMessageFor(model => model.CODE_ACTE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.NOMBRE_TRAITEMENT,"NOMBRE DE TRAITEMENT", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.NOMBRE_TRAITEMENT, new { htmlAttributes = new { @class = "form-control" , @id = "NBRTRAITEMENT1" } })
@Html.ValidationMessageFor(model => model.NOMBRE_TRAITEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIX_UNITATIRE,"PRIX UNITAIRE", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.PRIX_UNITATIRE, new { htmlAttributes = new { @class = "form-control",@id="PRIXUNITAIRE1" } })
@Html.ValidationMessageFor(model => model.PRIX_UNITATIRE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.MONTANT_ORIGINE,"MONTANT A L'ORIGINE", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.MONTANT_ORIGINE, new { htmlAttributes = new { @class = "form-control", @id="MONTANTORIGINE1" } })
@Html.ValidationMessageFor(model => model.MONTANT_ORIGINE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATE_PRESTATION,"DATE DE LA PRESTATION", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.DATE_PRESTATION, new { htmlAttributes = new { @class = "form-control", @id = "DATEPRESATION1" } })
@Html.ValidationMessageFor(model => model.DATE_PRESTATION, "", new { @class = "text-danger" })