@if (!string.IsNullOrEmpty(Model.PrimaryColorName))
{
@Model.PrimaryColorName
@if (!string.IsNullOrEmpty(Model.PrimaryColorCode)) { (@Model.PrimaryColorCode) }
@if (Model.CureTemperatureF.HasValue)
{
@Model.CureTemperatureF°F
}
}
Capacity
@Model.TotalSurfaceAreaSqFt.ToString("F1")
@if (Model.MaxLoadSqFt.HasValue) { / @Model.MaxLoadSqFt.Value.ToString("F0") sqft }
else { sqft }
@if (Model.MaxLoadSqFt.HasValue)
{
}
@foreach (var item in Model.Items.OrderBy(i => i.CoatPassNumber))
{
Pass @item.CoatPassNumber
@if (!string.IsNullOrEmpty(item.ColorName))
{
@item.ColorName
}
@item.ItemDescription
@item.JobNumber
·
@item.SurfaceAreaContribution.ToString("F1") sqft
@if (!string.IsNullOrEmpty(item.Priority) && item.Priority != "Normal")
{
@item.Priority
}
@if (isEditable)
{
}
}
@if (isEditable)
{
@(Model.Items.Any() ? "Drop more here" : "Drag coats here")
}
@if (Model.Status == "Planned" || Model.Status == "Loading")
{
}
else if (Model.Status == "InProgress")
{
}
else if (Model.Status == "Completed")
{
Completed @Model.ActualEndTime?.ToString("h:mm tt")
}