feat: 组合件和入库检验追加统计分析
This commit is contained in:
parent
5857b77aea
commit
d6504fa072
|
@ -58,6 +58,8 @@ def do_out(item: MIOItem):
|
|||
raise ParseError("组合件暂不支持追踪单件")
|
||||
|
||||
xbatches = []
|
||||
if is_zhj:
|
||||
xbatches = [item.batch]
|
||||
for al in action_list:
|
||||
xmaterial:Material = al[0]
|
||||
xbatch:str = al[1]
|
||||
|
@ -138,6 +140,8 @@ def do_in(item: MIOItem):
|
|||
production_dept = None
|
||||
|
||||
xbatchs = []
|
||||
if is_zhj:
|
||||
xbatchs = [item.batch]
|
||||
for al in action_list:
|
||||
xmaterial, xbatch, xcount = al
|
||||
xbatchs.append(xbatch)
|
||||
|
@ -332,7 +336,10 @@ class InmService:
|
|||
if xcount > 0:
|
||||
defect = defects_map[defect_id]
|
||||
m_list.append((material, warehouse, i.batch, xcount, defect, i))
|
||||
|
||||
xbatchs = []
|
||||
for material, warehouse, batch, change_count, defect, mioitem in m_list:
|
||||
xbatchs.append(batch)
|
||||
if change_count <= 0:
|
||||
continue
|
||||
state = WMaterial.WM_OK
|
||||
|
@ -383,6 +390,10 @@ class InmService:
|
|||
else:
|
||||
raise ParseError("不支持的操作")
|
||||
|
||||
# 批次统计分析
|
||||
xbatchs = list(set(xbatchs))
|
||||
for xbatch in xbatchs:
|
||||
MyThread(target=get_alldata_with_batch_and_store, args=(xbatch,)).start()
|
||||
|
||||
def daoru_mb(path: str):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue