feat(delivery): 添加查询已绑定钢卷列表功能
- 在 IWmsDeliveryWaybillDetailService 中新增 getBoundCoilIds 方法 - 在 WmsDeliveryWaybillDetailController 中新增 boundCoilList 接口 - 实现 WmsDeliveryWaybillDetailServiceImpl 的 getBoundCoilIds 查询逻辑 - 集成 WmsMaterialCoilService 查询已发货绑定的钢卷信息 - 添加钢卷 ID 去重处理确保数据准确性 - 支持分页查询返回 TableDataInfo 格式数据
This commit is contained in:
@@ -51,4 +51,9 @@ public interface IWmsDeliveryWaybillDetailService {
|
||||
* 校验并批量删除发货单明细信息
|
||||
*/
|
||||
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
||||
|
||||
/**
|
||||
* 查询所有已绑定的钢卷ID列表
|
||||
*/
|
||||
List<Long> getBoundCoilIds();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user