|
@@ -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")
|
|
@@ -2275,9 +2279,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
String startTime,
|
|
|
- String endTime
|
|
|
+ String endTime,BigDecimal orderType, String index, String isPage,String orgCode
|
|
|
+
|
|
|
){
|
|
|
- return tmsTruckFeign.getInwardReportForAssemble(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime);
|
|
|
+ return tmsTruckFeign.getInwardReportForAssemble(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime,orderType,index,isPage,orgCode);
|
|
|
}
|
|
|
|
|
|
|