feat(wms): 添加根据钢卷ID查询发货关联信息功能

- 在 IWmsDeliveryWaybillDetailService 中新增 queryRelationByCoilId 方法
- 在 WmsDeliveryWaybillDetailController 中新增 /coilRelation/{coilId} 接口
- 在 WmsDeliveryWaybillDetailServiceImpl 中实现完整的关联查询逻辑
- 创建 WmsDeliveryCoilRelationVo 数据传输对象
- 支持查询发货单明细、发货单、发货计划和钢卷的完整关联信息
This commit is contained in:
2026-04-23 09:54:22 +08:00
parent a553b8ddc4
commit b840574286
4 changed files with 290 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ package com.klp.service;
import com.klp.domain.WmsDeliveryWaybillDetail;
import com.klp.domain.vo.WmsDeliveryWaybillDetailVo;
import com.klp.domain.vo.WmsDeliveryCoilRelationVo;
import com.klp.domain.bo.WmsDeliveryWaybillDetailBo;
import com.klp.common.core.page.TableDataInfo;
import com.klp.common.core.domain.PageQuery;
@@ -23,6 +24,11 @@ public interface IWmsDeliveryWaybillDetailService {
*/
WmsDeliveryWaybillDetailVo queryById(Long detailId);
/**
* 根据钢卷ID查询发货关联信息发货单明细+发货单+发货计划+钢卷信息)
*/
WmsDeliveryCoilRelationVo queryRelationByCoilId(Long coilId);
/**
* 查询发货单明细列表
*/