|
|
|
@ -272,7 +272,7 @@ public class OtherInboundServiceImpl implements OtherInboundService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Map<String, Object> getInboundDetails(String inboundNo, String buNo, String warehouseId, String site) { |
|
|
|
public Map<String, Object> getInboundDetails(String inboundNo, String buNo, String warehouseId, String site, String relatedOrderNo) { |
|
|
|
try { |
|
|
|
logger.info("获取其他入库单详情,入库单号: {}, 业务单元: {}, 仓库: {}, 站点: {}", inboundNo, buNo, warehouseId, site); |
|
|
|
|
|
|
|
@ -281,6 +281,7 @@ public class OtherInboundServiceImpl implements OtherInboundService { |
|
|
|
params.put("buNo", buNo); |
|
|
|
params.put("warehouseId", warehouseId); |
|
|
|
params.put("site", site); |
|
|
|
params.put("relatedOrderNo", relatedOrderNo); |
|
|
|
|
|
|
|
Map<String, Object> details = otherInboundMapper.getInboundDetails(params); |
|
|
|
if (details != null) { |
|
|
|
|