Commit 8e2fa840 authored by Ioannis Papagiannopoulos's avatar Ioannis Papagiannopoulos Committed by Georgios Dagkakis

remainingSetup/ProcessingTime can now be used by OrderComponent

parent 36785433
......@@ -45,10 +45,13 @@ class OrderComponent(Job): # inherits from the
requestingComponent = None,
readyForAssembly = 0,
isCritical=False,
remainingProcessingTime={},
remainingSetupTime={},
currentStation=None,
**kw):
Job.__init__(self, id, name, route=route, priority=priority, dueDate=dueDate,
orderDate=orderDate, extraPropertyDict=extraPropertyDict, isCritical=isCritical,
remainingProcessingTime=remainingProcessingTime, remainingSetupTime=remainingSetupTime,
currentStation=currentStation)
#=======================================================================
self.auxiliaryList=[] # Holds the auxiliary components that the component needs for a certain processing
......
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