@model WebInterface.Models.RefreshStatusModel @{ ViewBag.Title = "Cache Refresh Status"; Layout = "~/Views/Shared/_Layout.cshtml"; }
@ViewBag.Title
@using (Html.BeginForm()) {
@Html.LabelFor(model => model.MinDT, "Start Time", new { @class = "control-label" }) @Html.EditorFor(model => model.MinDT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.MinDT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.MaxDT, "End Time", new { @class = "control-label" }) @Html.EditorFor(model => model.MaxDT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.MaxDT, "", new { @class = "text-danger" })
}
@foreach (var item in Model.Results.OrderByDescending(i => i.StartDT)) { @if (item.WasSuccessful) { } else { } }
Start End Number Of Records Updated Was Successful?
Branch Profit Center Work Center Org Hierarchy Status Code User Item Lot Work Order Work Order Step Work Order Component
@Html.DisplayFor(modelItem => item.StartDT) @Html.DisplayFor(modelItem => item.EndDT) @Html.DisplayFor(modelItem => item.BranchRecords) @Html.DisplayFor(modelItem => item.ProfitCenterRecords) @Html.DisplayFor(modelItem => item.WorkCenterRecords) @Html.DisplayFor(modelItem => item.OrgHierarchyRecords) @Html.DisplayFor(modelItem => item.StatusCodeRecords) @Html.DisplayFor(modelItem => item.UserRecords) @Html.DisplayFor(modelItem => item.ItemRecords) @Html.DisplayFor(modelItem => item.LotRecords) @Html.DisplayFor(modelItem => item.WorkOrderRecords) @Html.DisplayFor(modelItem => item.WorkOrderStepRecords) @Html.DisplayFor(modelItem => item.WorkOrderComponentRecords) YESNO