feat(delivery): 添加查询已绑定钢卷列表功能

- 在 IWmsDeliveryWaybillDetailService 中新增 getBoundCoilIds 方法
- 在 WmsDeliveryWaybillDetailController 中新增 boundCoilList 接口
- 实现 WmsDeliveryWaybillDetailServiceImpl 的 getBoundCoilIds 查询逻辑
- 集成 WmsMaterialCoilService 查询已发货绑定的钢卷信息
- 添加钢卷 ID 去重处理确保数据准确性
- 支持分页查询返回 TableDataInfo 格式数据
This commit is contained in:
2026-03-05 09:57:00 +08:00
parent 28839275d2
commit dfd2ba15d9
3 changed files with 38 additions and 0 deletions

View File

@@ -51,4 +51,9 @@ public interface IWmsDeliveryWaybillDetailService {
* 校验并批量删除发货单明细信息
*/
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
/**
* 查询所有已绑定的钢卷ID列表
*/
List<Long> getBoundCoilIds();
}