diff --git a/src/PowderCoating.Web/Controllers/JobsController.cs b/src/PowderCoating.Web/Controllers/JobsController.cs index 536df6a..b7f9840 100644 --- a/src/PowderCoating.Web/Controllers/JobsController.cs +++ b/src/PowderCoating.Web/Controllers/JobsController.cs @@ -501,7 +501,7 @@ public class JobsController : Controller // Inventory items for the manual log-material modal var inventoryItemsForModal = (await _unitOfWork.InventoryItems.GetAllAsync()) .OrderBy(i => i.Name) - .Select(i => new { i.Id, i.Name, i.UnitOfMeasure, i.QuantityOnHand }) + .Select(i => new { i.Id, i.Name, i.Manufacturer, i.UnitOfMeasure, i.QuantityOnHand }) .ToList(); ViewBag.InventoryItemsForModal = System.Text.Json.JsonSerializer.Serialize( inventoryItemsForModal, diff --git a/src/PowderCoating.Web/Views/Jobs/Details.cshtml b/src/PowderCoating.Web/Views/Jobs/Details.cshtml index 58da562..87746fd 100644 --- a/src/PowderCoating.Web/Views/Jobs/Details.cshtml +++ b/src/PowderCoating.Web/Views/Jobs/Details.cshtml @@ -1108,7 +1108,7 @@