feat(furnace-plan): 添加合同ID字段并实现合同关联功能

- 在 WmsFurnacePlanLocationItemBo 中新增 contractId 字段
- 实现合同ID映射关系构建和数据流转
- 移除二维码步骤类型的空值检查条件
- 完成合同信息在退火加工流程中的传递
This commit is contained in:
2026-06-18 13:34:47 +08:00
parent 759bbbed63
commit 7f1a89eb61
3 changed files with 14 additions and 1 deletions

View File

@@ -2044,7 +2044,7 @@ public class WmsMaterialCoilServiceImpl implements IWmsMaterialCoilService {
// }
// 加工操作必须绑定合同
if (bo.getContractId() == null && StringUtils.isBlank(qrcodeStepType)) {
if (bo.getContractId() == null) {
throw new RuntimeException("未填写合同");
}