feat(wms/delivery): 新增根据发货计划ID查询已绑定钢卷功能,优化钢卷查询备注匹配
1. 在发货计划明细服务层新增getBoundCoilIdsByPlanId接口,支持根据计划ID和时间段筛选已绑定的钢卷ID列表 2. 在发货计划明细控制器中扩展已绑定钢卷查询接口,新增planId参数,优先按计划ID查询,兼容原有时间段查询逻辑 3. 在钢卷服务实现中为钢卷查询条件增加remark字段的模糊匹配支持,提升查询灵活性
This commit is contained in:
@@ -73,4 +73,9 @@ public interface IWmsDeliveryWaybillDetailService {
|
||||
* 根据负责人(principal)查询已绑定的钢卷ID列表
|
||||
*/
|
||||
List<Long> getBoundCoilIdsByPrincipal(String principal);
|
||||
|
||||
/**
|
||||
* 根据发货计划ID查询已绑定的钢卷ID列表(可结合时间段筛选)
|
||||
*/
|
||||
List<Long> getBoundCoilIdsByPlanId(Long planId, Date startTime, Date endTime);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user