|
@@ -2250,7 +2250,6 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsTruckFeign.getInwardReportForAssemble(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
@ApiOperation("保卫部随机抽查车牌号")
|
|
|
@PostMapping("/getCapacityByDefend")
|
|
|
public Map<String,Object> getCapacityByDefend(@RequestBody(required = false) Map<String,Object> mapValue,
|
|
@@ -2333,4 +2332,21 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsshipFeign.getPersonByName(personName);
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value="获取内转报表")
|
|
|
+ @PostMapping("/getOutFactoryInwardList")
|
|
|
+ public Map<String, Object> getOutFactoryInwardList(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ String startTime,
|
|
|
+ String endTime,
|
|
|
+ String orgCode,
|
|
|
+ String isPage,
|
|
|
+ String index) {
|
|
|
+ if (mapValue==null){
|
|
|
+ mapValue=new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsTruckFeign.getOutFactoryInwardList(mapValue,apiId,pageNum,pageSize,startTime,endTime,orgCode,isPage,index);
|
|
|
+ }
|
|
|
}
|