refactor(delivery): 移除重复的钢卷查询接口并优化查询逻辑

- 删除 IWmsDeliveryPlanService 中的 getCoilInfoByIds 方法定义
- 删除 WmsDeliveryPlanBo 中冗余的 coilIds 字段
- 移除 WmsDeliveryPlanController 中独立的 /coils 接口实现
- 删除 WmsDeliveryPlanServiceImpl 中 getCoilInfoByIds 的具体实现
- 在 WmsMaterialCoilBo 中重新添加 coilIds 字段用于批量查询
- 优化 WmsMaterialCoilServiceImpl 中对 coilIds 的解析与查询逻辑
- 增强 coilIds 解析健壮性,忽略无效 ID 并防止空值异常
This commit is contained in:
2025-12-08 13:55:17 +08:00
parent 04a1480ec6
commit 0b792edafd
6 changed files with 22 additions and 38 deletions

View File

@@ -160,5 +160,10 @@ public class WmsMaterialCoilBo extends BaseEntity {
*/
private Integer minAbnormalCount;
/**
* 钢卷ID列表逗号分隔用于根据ID列表查询钢卷
*/
private String coilIds;
}