refactor(delivery): 移除重复的钢卷查询接口并优化查询逻辑
- 删除 IWmsDeliveryPlanService 中的 getCoilInfoByIds 方法定义 - 删除 WmsDeliveryPlanBo 中冗余的 coilIds 字段 - 移除 WmsDeliveryPlanController 中独立的 /coils 接口实现 - 删除 WmsDeliveryPlanServiceImpl 中 getCoilInfoByIds 的具体实现 - 在 WmsMaterialCoilBo 中重新添加 coilIds 字段用于批量查询 - 优化 WmsMaterialCoilServiceImpl 中对 coilIds 的解析与查询逻辑 - 增强 coilIds 解析健壮性,忽略无效 ID 并防止空值异常
This commit is contained in:
@@ -160,5 +160,10 @@ public class WmsMaterialCoilBo extends BaseEntity {
|
||||
*/
|
||||
private Integer minAbnormalCount;
|
||||
|
||||
/**
|
||||
* 钢卷ID列表(逗号分隔,用于根据ID列表查询钢卷)
|
||||
*/
|
||||
private String coilIds;
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user