feat: 完成多模块迭代更新

- 新增过程巡检按步骤上报、数量不符上报、工位退料功能
- 增加工单工程编号三级归属字段
- 新增物料安全库存与缺货预警
- 新增附件管理、退库单管理模块
- 优化生产看板展示逻辑与前端页面文案
- 清理冗余的工艺路线相关代码与备份文件
This commit is contained in:
SunYF
2026-09-15 16:37:39 +08:00
parent 951f3dfecd
commit 4a5e2d7bac
494 changed files with 24702 additions and 139223 deletions
+21 -5
View File
@@ -18,8 +18,9 @@ import (
// BomItemUpdate is the builder for updating BomItem entities.
type BomItemUpdate struct {
config
hooks []Hook
mutation *BomItemMutation
hooks []Hook
mutation *BomItemMutation
modifiers []func(*sql.UpdateBuilder)
}
// Where appends a list predicates to the BomItemUpdate builder.
@@ -300,6 +301,12 @@ func (_u *BomItemUpdate) check() error {
return nil
}
// Modify adds a statement modifier for attaching custom logic to the UPDATE statement.
func (_u *BomItemUpdate) Modify(modifiers ...func(u *sql.UpdateBuilder)) *BomItemUpdate {
_u.modifiers = append(_u.modifiers, modifiers...)
return _u
}
func (_u *BomItemUpdate) sqlSave(ctx context.Context) (_node int, err error) {
if err := _u.check(); err != nil {
return _node, err
@@ -368,6 +375,7 @@ func (_u *BomItemUpdate) sqlSave(ctx context.Context) (_node int, err error) {
if _u.mutation.SerialSnsCleared() {
_spec.ClearField(bomitem.FieldSerialSns, field.TypeJSON)
}
_spec.AddModifiers(_u.modifiers...)
if _node, err = sqlgraph.UpdateNodes(ctx, _u.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{bomitem.Label}
@@ -383,9 +391,10 @@ func (_u *BomItemUpdate) sqlSave(ctx context.Context) (_node int, err error) {
// BomItemUpdateOne is the builder for updating a single BomItem entity.
type BomItemUpdateOne struct {
config
fields []string
hooks []Hook
mutation *BomItemMutation
fields []string
hooks []Hook
mutation *BomItemMutation
modifiers []func(*sql.UpdateBuilder)
}
// SetProductCode sets the "productCode" field.
@@ -673,6 +682,12 @@ func (_u *BomItemUpdateOne) check() error {
return nil
}
// Modify adds a statement modifier for attaching custom logic to the UPDATE statement.
func (_u *BomItemUpdateOne) Modify(modifiers ...func(u *sql.UpdateBuilder)) *BomItemUpdateOne {
_u.modifiers = append(_u.modifiers, modifiers...)
return _u
}
func (_u *BomItemUpdateOne) sqlSave(ctx context.Context) (_node *BomItem, err error) {
if err := _u.check(); err != nil {
return _node, err
@@ -758,6 +773,7 @@ func (_u *BomItemUpdateOne) sqlSave(ctx context.Context) (_node *BomItem, err er
if _u.mutation.SerialSnsCleared() {
_spec.ClearField(bomitem.FieldSerialSns, field.TypeJSON)
}
_spec.AddModifiers(_u.modifiers...)
_node = &BomItem{config: _u.config}
_spec.Assign = _node.assignValues
_spec.ScanValues = _node.scanValues