1、新增产品初始化时生成功能刀具产品类别和功能刀具模版;2、新增库存初始化时生成组装后位置和刀具组装入库的作业类型。

This commit is contained in:
JIKIMO-YXH\xianghui
2023-10-25 17:35:12 +08:00
parent 802bd4285c
commit ce86a66e92
3 changed files with 46 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ class ResProductCategory(models.Model):
type = fields.Selection(
[("成品", "成品"), ("坯料", "坯料"), ("原材料", "原材料"), ("表面工艺", "表面工艺"), ("刀具", "刀具"),
("夹具", "夹具")],
("夹具", "夹具"), ("功能刀具", "功能刀具")],
default="", string="类型")