|
@@ -143,11 +143,22 @@ public class WMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
+ Integer warehouseId,
|
|
|
String con) {
|
|
|
- return wmsFeign.selectGridMaterialList(mapVal==null?new HashMap<>():mapVal,apiId, pageNum, pageSize,con);
|
|
|
+ return wmsFeign.selectGridMaterialList(mapVal==null?new HashMap<>():mapVal,apiId, pageNum, pageSize,warehouseId,con);
|
|
|
|
|
|
}
|
|
|
+// 查询仓库中超过库龄预警的物资
|
|
|
+ @PostMapping("/getGridMaterialAgeList")
|
|
|
+ @ApiOperation(value = "查询仓库中超过库龄预警的物资")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "apiId", value = "167", required = false, dataType = "BigDecimal"),
|
|
|
+ })
|
|
|
+ public Map<String, Object> getGridMaterialAgeList(@RequestBody(required = false) Map<String, Object> mapVal,
|
|
|
+ Integer warehouseId) {
|
|
|
+ return wmsFeign.getGridMaterialAgeList(mapVal==null?new HashMap<>():mapVal,warehouseId);
|
|
|
|
|
|
+ }
|
|
|
|
|
|
//通过成品仓库网格ID查询实时库存数据
|
|
|
@PostMapping("/selectGridMaterialListByGridId")
|