@model ParcelWeb.Core.ViewModels.ShipmentCalculateVM @using ParcelWeb @using ParcelWeb.Core.Configuration @{ ViewBag.Title = "Quick Quote"; } @if (Settings.CurrentTheme == AvySettings.General.Themes.Theme3) {

Quick Quote

@Html.DropDownList("CollectionCountry", Enumerable.Empty(), new { @class = "form-control select2-size-lg js-select", required = "required" })
@Html.DropDownList("DeliveryCountry", Enumerable.Empty(), new { @class = "select-xs form-control js-select", required = "required" })
@Html.DropDownList("ParcelTypeId", @ViewBag.ParcelTypeId as SelectList, new { @class = "form-control js-select", required = "required" })
Weight (kg) Length (cm) Width (cm) Height (cm)
@Html.Editor("Weight0", new { htmlAttributes = new { @class = "form-control font-weight-bold Weight", placeholder = "0" } }) @Html.ValidationMessage("WeightSpan0", "", new { @class = "text-danger WeightSpan small", @id = "WeightSpan0" }) @Html.Editor("Length0", new { htmlAttributes = new { @class = "form-control font-weight-bold Length", placeholder = "0" } }) @Html.ValidationMessage("LengthSpan0", "", new { @class = "text-danger LengthSpan small", @id = "LengthSpan0" }) @Html.Editor("Width0", new { htmlAttributes = new { @class = "form-control font-weight-bold Width", placeholder = "0" } }) @Html.ValidationMessage("WidthSpan0", "", new { @class = "text-danger WidthSpan small", @id = "WidthSpan0" }) @Html.Editor("Height0", new { htmlAttributes = new { @class = "form-control font-weight-bold Height", placeholder = "0" } }) @Html.ValidationMessage("HeightSpan0", "", new { @class = "text-danger HeightSpan small", @id = "HeightSpan0" }) @Html.Editor("VolWeight0", new { htmlAttributes = new { @class = "form-control font-weight-bold VolWeight", placeholder = "0.00", @readonly = "readonly" } })


} else {

Quick Quote

@Html.DropDownList("CollectionCountry", Enumerable.Empty(), new { @class = "form-control select2-size-lg js-select", required = "required" })
@Html.DropDownList("DeliveryCountry", Enumerable.Empty(), new { @class = "select-xs form-control js-select", required = "required" })
@Html.DropDownList("ParcelTypeId", @ViewBag.ParcelTypeId as SelectList, new { @class = "form-control js-select", required = "required" })
Weight (kg) Length (cm) Width (cm) Height (cm)
@Html.Editor("Weight0", new { htmlAttributes = new { @class = "form-control font-weight-bold Weight", placeholder = "0" } }) @Html.ValidationMessage("WeightSpan0", "", new { @class = "text-danger WeightSpan small", @id = "WeightSpan0" }) @Html.Editor("Length0", new { htmlAttributes = new { @class = "form-control font-weight-bold Length", placeholder = "0" } }) @Html.ValidationMessage("LengthSpan0", "", new { @class = "text-danger LengthSpan small", @id = "LengthSpan0" }) @Html.Editor("Width0", new { htmlAttributes = new { @class = "form-control font-weight-bold Width", placeholder = "0" } }) @Html.ValidationMessage("WidthSpan0", "", new { @class = "text-danger WidthSpan small", @id = "WidthSpan0" }) @Html.Editor("Height0", new { htmlAttributes = new { @class = "form-control font-weight-bold Height", placeholder = "0" } }) @Html.ValidationMessage("HeightSpan0", "", new { @class = "text-danger HeightSpan small", @id = "HeightSpan0" }) @Html.Editor("VolWeight0", new { htmlAttributes = new { @class = "form-control font-weight-bold VolWeight", placeholder = "0.00", @readonly = "readonly" } })
}
@Html.Editor("TotalWeight", new { htmlAttributes = new { @class = "form-control font-weight-bold hidden", placeholder = "0" } }) @Html.Editor("TotalVolWeight", new { htmlAttributes = new { @class = "form-control font-weight-bold hidden", placeholder = "0" } }) @Html.Editor("TotalChargeableWeight", new { htmlAttributes = new { @class = "form-control font-weight-bold hidden", placeholder = "0" } })
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }