+ @if (!Model.Any() || Model.Any(x => x.Missing))
+ {
+
@translator.Translate(userLanguage, "Missing Supplies, Please Delete This Template and Recreate It.")
+ } else
+ {
+
+
+
+
+
+ @translator.Translate(userLanguage, "Description") |
+ @translator.Translate(userLanguage, "Required") |
+ @translator.Translate(userLanguage, "In Stock") |
+
+
+
+ @foreach (SupplyAvailability supplyAvailability in Model)
+ {
+
+ @StaticHelper.TruncateStrings(supplyAvailability.Description) |
+ @supplyAvailability.Required.ToString("N2") |
+ @supplyAvailability.InStock.ToString("N2") |
+
+ }
+
+
+
+
+ }
+
+
\ No newline at end of file
diff --git a/Views/Vehicle/_PlanRecordTemplateModal.cshtml b/Views/Vehicle/_PlanRecordTemplateModal.cshtml
index b0ca4fc2..7bb336ae 100644
--- a/Views/Vehicle/_PlanRecordTemplateModal.cshtml
+++ b/Views/Vehicle/_PlanRecordTemplateModal.cshtml
@@ -39,7 +39,7 @@
}
@if (planRecordTemplate.Supplies.Any())
{
-