|
@@ -155,8 +155,7 @@ public class OMSController {
|
|
|
Integer pageSize,
|
|
|
@PathVariable Integer orderReceiveStatus,
|
|
|
Integer orderType,
|
|
|
- Integer orderStatus,
|
|
|
- String con
|
|
|
+ Integer orderStatus, String con
|
|
|
){
|
|
|
return omsFeign.getReceiveRefuseOrder(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum,
|
|
|
pageSize, orderReceiveStatus, orderType, orderStatus, con);
|
|
@@ -516,11 +515,12 @@ public class OMSController {
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- String con) {
|
|
|
+ String con,
|
|
|
+ String carrierId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- Map<String, Object> map = omsFeign.getCapacityAndDriverList(mapValue, apiId, pageNum, pageSize, con);
|
|
|
+ Map<String, Object> map = omsFeign.getCapacityAndDriverList(mapValue, apiId, pageNum, pageSize, con,carrierId);
|
|
|
return map;
|
|
|
}
|
|
|
|
|
@@ -562,7 +562,7 @@ public class OMSController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer orderStatus,
|
|
|
- Integer carrierId,
|
|
|
+ String carrierId,
|
|
|
String con) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|