修改工单完成后,自动完成制造订单,完工产品就绪状态

This commit is contained in:
qihao.gong@jikimo.com
2024-01-09 10:31:43 +08:00
parent 3742a3b163
commit 86366cc6cb
5 changed files with 28 additions and 29 deletions

View File

@@ -196,7 +196,7 @@ class MrpProduction(models.Model):
)
i += 1
for route in product_routing_workcenter:
if i == 1 and route.routing_type == '获取CNC加工程序':
if i == 1 and route.routing_type == '装夹预制':
workorders_values.append(
self.env['mrp.workorder'].json_workorder_str('', production, route))
if route.is_repeat is True:
@@ -416,10 +416,10 @@ class MrpProduction(models.Model):
for work in rec.workorder_ids:
work.sequence = current_sequence
current_sequence += 1
if work.name == '获取CNC加工程序':
work.button_start()
#work.fetchCNC()
work.button_finish()
# if work.name == '获取CNC加工程序':
# work.button_start()
# #work.fetchCNC()
# work.button_finish()
# 创建工单并进行排序
def _create_workorder(self):