|
@@ -117,6 +117,23 @@ public class WMSHController extends BaseRESTfulController {
|
|
|
return wmshFeign.getLoadPortStockList(mapValue, pageNum, pageSize, apiId,con);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("getDownPortStockList")
|
|
|
+ @ApiOperation(value = "下游港口库存")
|
|
|
+ public RESTfulResult getDownPortStockList(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
+ if (mapValue == null) {
|
|
|
+ mapValue = new HashMap<>();
|
|
|
+ }
|
|
|
+ return wmshFeign.getDownPortStockList(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("getRunStockList")
|
|
|
+ @ApiOperation(value = "在途库存")
|
|
|
+ public RESTfulResult getRunStockList(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
+ if (mapValue == null) {
|
|
|
+ mapValue = new HashMap<>();
|
|
|
+ }
|
|
|
+ return wmshFeign.getRunStockList(mapValue);
|
|
|
+ }
|
|
|
/**
|
|
|
* 查询所有港存库入库实绩
|
|
|
*
|