feat(材料管理): 添加原始工单号字段并优化注释

- 在MmInventoryDto中添加WorkorderRaw字段用于记录成品号之前的原始工单号
- 更新MmRecordOutboundDto中WorkorderRaw字段的注释说明
- 在库存服务中处理WorkorderRaw字段的映射
- 移除出库单处理中的冗余注释
This commit is contained in:
2026-01-30 14:05:09 +08:00
parent 4bfe08d0c1
commit 17efcdf2cf
4 changed files with 9 additions and 2 deletions

View File

@@ -736,6 +736,7 @@ namespace DOAN.Service.BZFM
Operator = it.Operator,
CreatedTime = it.CreatedTime,
Workorder = it.Workorder,
WorkorderRaw = it.WorkorderRaw,
StoveCode = it.StoveCode,
Remarks = it.Remarks,
})
@@ -779,6 +780,7 @@ namespace DOAN.Service.BZFM
Operator = it.Operator,
CreatedTime = it.CreatedTime,
Workorder = it.Workorder,
WorkorderRaw = it.WorkorderRaw,
OrderNo = it.OrderNo,
Remarks = it.Remarks,
})