Commit 6623f52c authored by Ioannis Papagiannopoulos's avatar Ioannis Papagiannopoulos Committed by Georgios Dagkakis

extra clarifying comment on previous changes

parent 5e711c74
...@@ -94,6 +94,7 @@ class MachineJobShop(Machine): ...@@ -94,6 +94,7 @@ class MachineJobShop(Machine):
# read the setup/processing time from the first entry of the full route # read the setup/processing time from the first entry of the full route
activeEntity=self.getActiveObjectQueue()[0] activeEntity=self.getActiveObjectQueue()[0]
#if the entity has its route defined in the BOM then remainingProcessing/SetupTime is provided #if the entity has its route defined in the BOM then remainingProcessing/SetupTime is provided
# XX consider moving setupUPtime update to checkForManualOperationTypes as Setup is performed before Processing
if activeEntity.routeInBOM: if activeEntity.routeInBOM:
processingTime=self.getOperationTime(activeEntity.remainingProcessingTime) processingTime=self.getOperationTime(activeEntity.remainingProcessingTime)
setupTime=self.getOperationTime(activeEntity.remainingSetupTime) setupTime=self.getOperationTime(activeEntity.remainingSetupTime)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment