|
@@ -118,11 +118,13 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getLoadShipList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId) {
|
|
|
+ Integer apiId,
|
|
|
+ Integer status,
|
|
|
+ @RequestParam(required = false) String con) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
+ return tmsshipFeign.getLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status,con);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getLoadShip/{resultId}")
|
|
@@ -351,9 +353,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getWaterQualityResultList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId) {
|
|
|
+ Integer apiId,
|
|
|
+ @RequestParam(required = false) String con) {
|
|
|
|
|
|
- return tmsshipFeign.getWaterQualityResultList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
+ return tmsshipFeign.getWaterQualityResultList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId, con);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getWaterQuality/{resultId}")
|
|
@@ -640,11 +643,12 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
- Integer status) {
|
|
|
+ Integer status,
|
|
|
+ @RequestParam(required = false) String con) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getshipDeliveryNoticeList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status);
|
|
|
+ return tmsshipFeign.getshipDeliveryNoticeList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status,con);
|
|
|
}
|
|
|
|
|
|
@PostMapping("insertDeliveryNotice")
|
|
@@ -875,8 +879,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
@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);
|
|
|
+ Integer pageSize,
|
|
|
+ String wagon,
|
|
|
+ String purchaseOrderNum,
|
|
|
+ String materialName){
|
|
|
+ return tmsTrainFeign.getWagonNo(resultType, mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize,wagon,purchaseOrderNum,materialName);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "查询所有发运计划")
|
|
@@ -1954,8 +1961,8 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getLoadResultToSendMC( @RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
- Integer pageSize,Integer resultType) {
|
|
|
- return tmsTrainFeign.getLoadResultToSendMC(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, resultType);
|
|
|
+ Integer pageSize,Integer resultType,String con) {
|
|
|
+ return tmsTrainFeign.getLoadResultToSendMC(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, resultType,con);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "批量新增计量委托")
|