Create Transportation Request
Transportation Request
@*@Html.DropDownList("CustomerID", Model.CustomerGroupDDL, new { @class = "form-control" })*@
@Html.DropDownListFor(m => m.TransportationRequestID,
new SelectList(ViewBag.TransportationRequestID, "CODE_REF", "DESCRIPTION"),
"Select Transportation Request",
new { @class = "form-control select" })
@Html.ValidationMessageFor(m => m.TransportationRequestID, "", new { @class = "text-danger" })
Request Date @Html.EditorFor(model => model.RequestDate, new { htmlAttributes = new { @class = "form-control", @placeholder = "" } })
From Location @Html.EditorFor(model => model.FromLocation, new { htmlAttributes = new { @class = "form-control", @placeholder = "" } })
To Location @Html.EditorFor(model => model.ToLocation, new { htmlAttributes = new { @class = "form-control", @placeholder = "" } })
Request By
@Html.DropDownList("RequestBy", null, htmlAttributes: new { @class = "form-control select2" })
@Html.ValidationMessageFor(m => m.RequestBy, "", new { @class = "text-danger" })
Reason @Html.EditorFor(model => model.Reason, new { htmlAttributes = new { @class = "form-control", @placeholder = "" } })
Select Project
@Html.DropDownList("ProjectMonitorID", null, htmlAttributes: new { @class = "form-control select2", @onchange = "GetDetail();" })