workOrderID added to output

This commit is contained in:
2024-04-22 16:21:00 -04:00
parent e8032f65d1
commit 2adaff8f66
+1
View File
@@ -100,6 +100,7 @@ public class WorkOrder implements Delayed {
JSONObject jsonWorkOrder = new JSONObject(); JSONObject jsonWorkOrder = new JSONObject();
jsonWorkOrder.put("workOrderID", workOrder.workOrderID);
jsonWorkOrder.put("vendor", workOrder.vendor.getObjectUUID()); jsonWorkOrder.put("vendor", workOrder.vendor.getObjectUUID());
jsonWorkOrder.put("slots_used", workOrder.slots_used); jsonWorkOrder.put("slots_used", workOrder.slots_used);
jsonWorkOrder.put("total_to_produce", workOrder.total_to_produce); jsonWorkOrder.put("total_to_produce", workOrder.total_to_produce);