@model MALDFGASSURANCE.Models.PROFORMAT @{ ViewBag.Title = "SaisirExamen"; }

EDITION DE PRISE EN CHARGE @ViewBag.TYPEPRESCRIPTION

@using (Html.BeginForm("SaisirExamen", "PROFORMATS", FormMethod.Post, new { enctype = "multipart/form-data" })) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" }) @if (ViewBag.Message != null) {

@ViewBag.Message

} @*@Html.HiddenFor(model => model.="ACTE50")*@
@*
@Html.LabelFor(model => model.NUMEROPROFORMAT, "N° PROFORMA", htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.NUMEROPROFORMAT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.NUMEROPROFORMAT, "", new { @class = "text-danger" })
*@
@if (ViewData["MATRICULE"] != null) { }
@Html.LabelFor(model => model.ID_ETABLISSEMENT, "ETABLISSEMENT", htmlAttributes: new { @class = "control-label " }) @Html.DropDownList("ID_ETABLISSEMENT", null, htmlAttributes: new { @class = "form-control select2", @id = "kt_select2_2" }) @Html.ValidationMessageFor(model => model.ID_ETABLISSEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.INFORMATION, "PLAFOND", htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.INFORMATION, new { htmlAttributes = new { @class = "form-control"} }) @Html.ValidationMessageFor(model => model.INFORMATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATEPROFORMAT, "DATE DE LA PRISE EN CHARGE", htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.DATEPROFORMAT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATEPROFORMAT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.IDMEDECINCONSEIL, "MEDECIN CONSEIL", htmlAttributes: new { @class = "control-label " }) @Html.DropDownList("IDMEDECINCONSEIL", null, htmlAttributes: new { @class = "form-control select2", @id = "kt_select2_3" }) @Html.ValidationMessageFor(model => model.IDMEDECINCONSEIL, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PHOTOPROFORMA, "PIECE (format autorisé: Jpeg,Png,Pdf,Jpg)", htmlAttributes: new { @class = "control-label " }) @Html.TextBox("PHOTOPROFORMA", "", new { @type = "file", @class = "form-control" }) @Html.ValidationMessageFor(model => model.PHOTOPROFORMA, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.MOTIF, htmlAttributes: new { @class = "control-label " }) @Html.TextAreaFor(model => model.MOTIF, new { @class = "form-control", @rows = 5 } ) @Html.ValidationMessageFor(model => model.MOTIF, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.EXAMENS, "EXAMENS DEMANDES", htmlAttributes: new { @class = "control-label " }) @Html.TextAreaFor(model => model.EXAMENS, new { @class = "form-control" , @rows=5}) @Html.ValidationMessageFor(model => model.EXAMENS, "", new { @class = "text-danger" })
}