wms-入仓通知单打印查询

This commit is contained in:
zhaoqing
2026-04-18 18:37:55 +08:00
parent 38d497392b
commit 19eb93377c
6 changed files with 133 additions and 18 deletions
@@ -190,8 +190,9 @@ public class StockInOrderApi extends BaseController {
@ApiOperation("入仓通知单打印查询")
@PostMapping("/queryNoticePrint")
public AjaxResult queryNoticePrint(@RequestBody StockInOrderDTO stockInOrderDTO) {
List<StockInOrderPO> headerList = stockInOrderApplicationService.queryNoticePrint(stockInOrderDTO);
List<InMaterialDetailPO> detailList = stockInOrderApplicationService.queryNoticePrintDetail(stockInOrderDTO);
StockInOrderDO stockInOrderDO = stockInOrderAssembler.toDO(stockInOrderDTO);
List<StockInOrderPO> headerList = stockInOrderApplicationService.queryNoticePrint(stockInOrderDO);
List<InMaterialDetailPO> detailList = stockInOrderApplicationService.queryNoticePrintDetail(stockInOrderDO);
Map<String, Object> result = new HashMap<>();
if (!headerList.isEmpty()) {
result.put("header", headerList.get(0));