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

@@ -60,6 +60,4 @@ public interface IWmsDeliveryPlanService {
* 获取发货报表统计信息(包含汇总和按类型统计)
*/
WmsDeliveryReportResultVo getDeliveryReport(Date startTime, Date endTime);
List<WmsMaterialCoilVo> getCoilInfoByIds(String coilIds);
}