new plugin that updates the WIP according to the flag completed of the route steps

parent 480c206c
from copy import copy
import json
import time
import random
import operator
from datetime import datetime
import copy
from dream.plugins import plugin
class ReadJSCompleted(plugin.InputPreparationPlugin):
""" Input preparation
reads the work-plan from the corresponding spreadsheet
"""
def preprocess(self, data):
""" inserts the retrieved order components and the related information (routing) to the BOM echelon
"""
self.data=data
orders = data["input"]["BOM"].get("orders",{})
wip = data["input"]["BOM"].get("WIP", {})
for order in orders:
components = order.get("componentsList", [])
for component in components:
routeConcluded = True
route = component.get("route", [])
for index, step in enumerate(route):
completed = step.get("completed", )
if not completed:
routeConcluded = False
# check the WIP and see if the current part already resides there
if not part["componentID"] in wip.keys():
# if there is a previous task
if index:
previousStep = route[index-1]
# XXX: no entry/exit/stationID is defined
wip[part["componentID"]] = {
"task_id": previousStep["task_id"],
"station": previousStep["technology"],
"remainingProcessingTime": 0,
"sequence": previousStep["sequence"]
}
if routeConcluded:
wip[part["componentID"]] = {
"task_id": step["task_id"],
"station": step["technology"],
"remainingProcessingTime": 0,
"sequence": step["sequence"]
}
return data
\ No newline at end of file
......@@ -822,6 +822,9 @@
}, {
"_class": "dream.plugins.ReadJSWorkPlan.ReadJSWorkPlan",
"input_id": "workplan_spreadsheet"
}, {
"_class": "dream.plugins.ReadJSCompleted.ReadJSCompleted",
"input_id": ""
}
]
},
......
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