refactor: 重构工艺工序相关命名与数据模型
1. 全局替换"工序"为"工艺"统一术语,包括页面文案、枚举、注释
2. 重构工单与工件工艺数据模型:
- 新增工艺组合表flow_material作为备料/齐套唯一源头
- 新增工位状态表station_state支持自主停单/恢复接单
- 移除station_process派工表,改用工单工艺组合作为路线唯一源头
- 替换processCode为flowId作为工艺关联标识
- 重构工件当前进度字段为currentStationNo
3. 删除冗余的静态备份资源文件
4. 调整物料选择组件默认启用仅显示激活物料
5. 优化工单创建/编辑逻辑,新增工艺组合校验与保存
This commit is contained in:
@@ -54,16 +54,16 @@ func (_c *WorkpieceCreate) SetNillableWorkOrderId(v *int) *WorkpieceCreate {
|
||||
return _c
|
||||
}
|
||||
|
||||
// SetCurrentProcess sets the "currentProcess" field.
|
||||
func (_c *WorkpieceCreate) SetCurrentProcess(v int) *WorkpieceCreate {
|
||||
_c.mutation.SetCurrentProcess(v)
|
||||
// SetCurrentStationNo sets the "currentStationNo" field.
|
||||
func (_c *WorkpieceCreate) SetCurrentStationNo(v int) *WorkpieceCreate {
|
||||
_c.mutation.SetCurrentStationNo(v)
|
||||
return _c
|
||||
}
|
||||
|
||||
// SetNillableCurrentProcess sets the "currentProcess" field if the given value is not nil.
|
||||
func (_c *WorkpieceCreate) SetNillableCurrentProcess(v *int) *WorkpieceCreate {
|
||||
// SetNillableCurrentStationNo sets the "currentStationNo" field if the given value is not nil.
|
||||
func (_c *WorkpieceCreate) SetNillableCurrentStationNo(v *int) *WorkpieceCreate {
|
||||
if v != nil {
|
||||
_c.SetCurrentProcess(*v)
|
||||
_c.SetCurrentStationNo(*v)
|
||||
}
|
||||
return _c
|
||||
}
|
||||
@@ -275,9 +275,9 @@ func (_c *WorkpieceCreate) createSpec() (*Workpiece, *sqlgraph.CreateSpec) {
|
||||
_spec.SetField(workpiece.FieldWorkOrderId, field.TypeInt, value)
|
||||
_node.WorkOrderId = value
|
||||
}
|
||||
if value, ok := _c.mutation.CurrentProcess(); ok {
|
||||
_spec.SetField(workpiece.FieldCurrentProcess, field.TypeInt, value)
|
||||
_node.CurrentProcess = value
|
||||
if value, ok := _c.mutation.CurrentStationNo(); ok {
|
||||
_spec.SetField(workpiece.FieldCurrentStationNo, field.TypeInt, value)
|
||||
_node.CurrentStationNo = value
|
||||
}
|
||||
if value, ok := _c.mutation.Status(); ok {
|
||||
_spec.SetField(workpiece.FieldStatus, field.TypeString, value)
|
||||
|
||||
Reference in New Issue
Block a user