More workorder loading work

This commit is contained in:
2024-04-22 16:07:25 -04:00
parent 73e30062ea
commit 286a76b1de
2 changed files with 8 additions and 10 deletions
+4 -10
View File
@@ -202,23 +202,17 @@ public class dbWarehouseHandler extends dbHandlerBase {
Logger.error(e);
}
// Process workOrder records
// Remove the old workOrder records
for (WorkOrder workOrder : submitList)
DbManager.WarehouseQueries.DELETE_WORKORDER(workOrder);
// Submit the new workOrders to the ForgeManager
for (WorkOrder workOrder : submitList) {
// WorkOrder needs a new ID
workOrder.workOrderID = ForgeManager.wordOrderCounter.incrementAndGet();
// Reconstruct cooking items
ForgeManager.vendorWorkOrderLookup.get(workOrder.vendor).add(workOrder);
}
// Pass the new workOrders to the ForgeManager
}
}