|
@@ -44,6 +44,30 @@ public class WMSHController extends BaseRESTfulController {
|
|
|
return wmshFeign.getUnloadPortStockList(mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 展示下游港口港存库库存列表
|
|
|
+ *
|
|
|
+ * @param mapValue
|
|
|
+ * @param pageNum
|
|
|
+ * @param pageSize
|
|
|
+ * @param apiId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("getLoadPortStockByMaterialName")
|
|
|
+ @ApiOperation(value = "展示下游港口港存库库存列表")
|
|
|
+ public RESTfulResult getLoadPortStockByMaterialName(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer apiId,
|
|
|
+ String con) {
|
|
|
+ if (mapValue == null) {
|
|
|
+ mapValue = new HashMap<>();
|
|
|
+ }
|
|
|
+ return wmshFeign.getLoadPortStockByMaterialName(mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 展示万州港港存库库存列表
|
|
|
*
|
|
@@ -58,11 +82,12 @@ public class WMSHController extends BaseRESTfulController {
|
|
|
public RESTfulResult getLoadPortStockList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId) {
|
|
|
+ Integer apiId,
|
|
|
+ String con) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return wmshFeign.getLoadPortStockList(mapValue, pageNum, pageSize, apiId);
|
|
|
+ return wmshFeign.getLoadPortStockList(mapValue, pageNum, pageSize, apiId,con);
|
|
|
}
|
|
|
|
|
|
/**
|