id is key not saved in json

This commit is contained in:
2024-04-22 14:47:42 -04:00
parent 19c6cd76a9
commit a53848334f
-1
View File
@@ -55,7 +55,6 @@ 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);