Compare commits
4 Commits
0df2353d4f
...
ebd474ae81
| Author | SHA1 | Date | |
|---|---|---|---|
| ebd474ae81 | |||
| 3c390a2e05 | |||
| df9863a0bb | |||
| 7020797a25 |
@@ -503,7 +503,9 @@ public class JobsController : Controller
|
||||
.OrderBy(i => i.Name)
|
||||
.Select(i => new { i.Id, i.Name, i.UnitOfMeasure, i.QuantityOnHand })
|
||||
.ToList();
|
||||
ViewBag.InventoryItemsForModal = System.Text.Json.JsonSerializer.Serialize(inventoryItemsForModal);
|
||||
ViewBag.InventoryItemsForModal = System.Text.Json.JsonSerializer.Serialize(
|
||||
inventoryItemsForModal,
|
||||
new System.Text.Json.JsonSerializerOptions { PropertyNamingPolicy = System.Text.Json.JsonNamingPolicy.CamelCase });
|
||||
|
||||
// Pre-logged powder grouped by InventoryItemId (for Complete Job modal pre-fill)
|
||||
ViewBag.PreLoggedPowder = allJobTransactions
|
||||
|
||||
Reference in New Issue
Block a user