@using System.Globalization @using ApacKernel.Web @using ApacSale.Web.MVC @using Now.Web @model Now.Entities.DistributionCenterSummary @{ Layout = "~/Views/Shared/_Layout.cshtml"; var currentMode = ViewBag.Mode; var numberFormat = new CultureInfo("en-AU").NumberFormat; } @section topMenu { @Html.ActionLink("Today", "DcNow", new { controller = "DistributionCenter" }, new { @class = "top-menu-link" }) @Html.ActionLink("Yesterday", "DcHistorical", new { controller = "DistributionCenter", rangeName = "Yesterday", locationCode = ViewBag.LocationCode }, new { @class = (currentMode == "Yesterday" ? "top-menu-link top-menu-link__selected" : "top-menu-link") }) @Html.ActionLink("This" + SpecialSymbols.NBSP + "Month", "DcHistorical", new { controller = "DistributionCenter", rangeName = "ThisMonth", locationCode = ViewBag.LocationCode }, new { @class = (currentMode == "ThisMonth" ? "top-menu-link top-menu-link__selected" : "top-menu-link") }) @Html.ActionLink("Last" + SpecialSymbols.NBSP + "Month", "DcHistorical", new { controller = "DistributionCenter", rangeName = "LastMonth", locationCode = ViewBag.LocationCode }, new { @class = (currentMode == "LastMonth" ? "top-menu-link top-menu-link__selected" : "top-menu-link") }) }

Distribution Center

Receiving
@Model.ReceivedQtyTotal.ToString("#,0", numberFormat)
Units
Sorting
@Model.PickedQtyTotal.ToString("#,0", numberFormat)
Units
Packing
@Model.ConsignmentsDispatchedQtyTotal.ToString("#,0", numberFormat)
Consignments
@Html.IncludeJSResources()