wms-入仓通知单打印查询
This commit is contained in:
+3
-2
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user