chen.lin
2 天以前 9140aee230de0ef41de9682a9353fbd372e2bcaa
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/ErpQueryController.java
@@ -38,6 +38,7 @@
    @Autowired
    private ReceiveMsgService receiveMsgService;
    @Autowired
    private MatnrGroupService matnrGroupService;
@@ -103,4 +104,22 @@
        return receiveMsgService.queryTransfer(queryParams);
    }
    /**
     * 对接协议 8.4 库存明细查询
     */
    @PostMapping("/inventory/details")
    @ApiOperation(value = "库存明细查询")
    public R inventoryDetails(@RequestBody(required = false) InventoryDetailsParam param) {
        return receiveMsgService.inventoryDetails(param != null ? param : new InventoryDetailsParam());
    }
    /**
     * 对接协议 8.5 库存汇总查询
     */
    @PostMapping("/inventory/summary")
    @ApiOperation(value = "库存汇总查询")
    public R inventorySummary(@RequestBody(required = false) InventorySummaryParam param) {
        return receiveMsgService.inventorySummary(param != null ? param : new InventorySummaryParam());
    }
}