|
@@ -760,10 +760,14 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsTrainFeign.getBatchId();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value="获取装车车皮号")
|
|
|
- @GetMapping(value = "/getWagonNo/{resultType}")
|
|
|
- public Map<String, Object> getWagonNo(@PathVariable("resultType") Integer resultType){
|
|
|
- return tmsTrainFeign.getWagonNo(resultType);
|
|
|
+ @ApiOperation(value = "获取已装车还未卸车车皮")
|
|
|
+ @PostMapping(value = "/getWagonNo/{resultType}")
|
|
|
+ public Map<String, Object> getWagonNo(@PathVariable("resultType") Integer resultType,
|
|
|
+ @RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize){
|
|
|
+ return tmsTrainFeign.getWagonNo(resultType, mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value="查询所有发运计划")
|
|
@@ -1035,8 +1039,8 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer status,
|
|
|
- Integer orderType){
|
|
|
- return tmsTruckFeign.getAllLoadResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, status, orderType);
|
|
|
+ Integer orderType, String con){
|
|
|
+ return tmsTruckFeign.getAllLoadResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, status, orderType, con);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value="新增汽车装车实绩")
|
|
@@ -1090,9 +1094,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer orderType
|
|
|
+ Integer orderType,
|
|
|
+ String con
|
|
|
){
|
|
|
- return tmsTruckFeign.getAllEnFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType);
|
|
|
+ return tmsTruckFeign.getAllEnFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value="通过采集系统传来的数据新增进厂作业实绩")
|
|
@@ -1127,8 +1132,8 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer orderType){
|
|
|
- return tmsTruckFeign.getAllJiMaoResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType);
|
|
|
+ Integer orderType,String con){
|
|
|
+ return tmsTruckFeign.getAllJiMaoResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value="查询计皮实绩")
|
|
@@ -1144,8 +1149,9 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer orderType) {
|
|
|
- return tmsTruckFeign.getAllJiPiResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType);
|
|
|
+ Integer orderType,
|
|
|
+ String con) {
|
|
|
+ return tmsTruckFeign.getAllJiPiResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -1182,9 +1188,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer orderType
|
|
|
+ Integer orderType,
|
|
|
+ String con
|
|
|
){
|
|
|
- return tmsTruckFeign.getUnloadResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType);
|
|
|
+ return tmsTruckFeign.getUnloadResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value="添加卸货实绩")
|
|
@@ -1220,9 +1227,9 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer orderType
|
|
|
+ Integer orderType,String con
|
|
|
){
|
|
|
- return tmsTruckFeign.getReceiveResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType);
|
|
|
+ return tmsTruckFeign.getReceiveResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -1242,11 +1249,12 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer orderType
|
|
|
+ Integer orderType,String con
|
|
|
){
|
|
|
- return tmsTruckFeign.getLeaveFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType);
|
|
|
+ return tmsTruckFeign.getLeaveFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
@ApiOperation(value="PAD扫描汽车出厂实绩")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "mapValue", value = "", required = false, dataType = "Map"),
|
|
@@ -1281,9 +1289,9 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getQualityResult(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
- Integer pageSize
|
|
|
+ Integer pageSize,String con
|
|
|
){
|
|
|
- return tmsTruckFeign.getQualityResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
|
|
|
+ return tmsTruckFeign.getQualityResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, con);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value="通过ID获取质检实绩 ")
|