@Html.LabelFor(model => model.TotalWeight, htmlAttributes: new { @class = "" })
@Html.EditorFor(model => model.TotalWeight, new { htmlAttributes = new { @class = "form-control font-weight-bold", placeholder = "0" } })
Kg
@Html.ValidationMessageFor(model => model.TotalWeight, "", new { @class = "text-danger" })
@if (Model.ShipmentDetail.Count != 0)
{
@Html.Label("Cubic(Length)cm", htmlAttributes: new { @class = "" })
@Html.EditorFor(model => model.ShipmentDetail[0].Length, new { htmlAttributes = new { @class = "form-control text-sm-left ", placeholder = "Length" } })
@Html.ValidationMessageFor(model => model.ShipmentDetail[0].Length, "", new { @class = "text-danger" })
@Html.Label("Cubic(Width)cm", htmlAttributes: new { @class = "" })
@Html.EditorFor(model => model.ShipmentDetail[0].Width, new { htmlAttributes = new { @class = "form-control text-sm-left ", placeholder = "Width" } })
@Html.ValidationMessageFor(model => model.ShipmentDetail[0].Width, "", new { @class = "text-danger" })
@Html.Label("Cubic(Height)cm", htmlAttributes: new { @class = "" })
@Html.EditorFor(model => model.ShipmentDetail[0].Height, new { htmlAttributes = new { @class = "form-control text-sm-left ", placeholder = "Height" } })
@Html.ValidationMessageFor(model => model.ShipmentDetail[0].Height, "", new { @class = "text-danger" })
}
@Html.Label("Vol Weight cm", htmlAttributes: new { @class = "" })
@Html.EditorFor(model => model.TotalVolWeight, new { htmlAttributes = new { @class = "form-control text-sm-left", placeholder = "Vol.Weight" } })
@Html.ValidationMessageFor(model => model.TotalVolWeight, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.TotalChargeableWeight, htmlAttributes: new { @class = "" })
@Html.EditorFor(model => model.TotalChargeableWeight, new { htmlAttributes = new { @class = "form-control font-weight-bold", placeholder = "0" } })
Kg
@Html.ValidationMessageFor(model => model.TotalChargeableWeight, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.RefNo, htmlAttributes: new { @class = "font-weight-bold" })
@Html.EditorFor(model => model.RefNo, new { htmlAttributes = new { @class = "form-control font-weight-bold", placeholder = "Reference No" } })
@Html.ValidationMessageFor(model => model.RefNo, "", new { @class = "text-danger" })
@*
@Html.CheckBoxFor(model => model.PaidStatus)
@Html.LabelFor(model => model.PaidStatus)
*@
@Html.CheckBoxFor(model => model.EmailNotify)
@Html.LabelFor(model => model.EmailNotify)
@*
@Html.CheckBoxFor(model => model.AdditionalInfo)
@Html.LabelFor(model => model.AdditionalInfo)
*@