|
@@ -102,7 +102,8 @@ public class StatisticalReportController extends BaseRESTfulController {
|
|
String carrierSsoId,
|
|
String carrierSsoId,
|
|
String userId,
|
|
String userId,
|
|
String userIds,
|
|
String userIds,
|
|
- String con
|
|
|
|
|
|
+ String con,
|
|
|
|
+ Integer orderType
|
|
){
|
|
){
|
|
if(carrierSsoId != null) {
|
|
if(carrierSsoId != null) {
|
|
if (!"null".equals(carrierSsoId)) {
|
|
if (!"null".equals(carrierSsoId)) {
|
|
@@ -112,6 +113,9 @@ public class StatisticalReportController extends BaseRESTfulController {
|
|
if (userId!=null){
|
|
if (userId!=null){
|
|
mapValue.put("userId",userId);
|
|
mapValue.put("userId",userId);
|
|
}
|
|
}
|
|
|
|
+ if (orderType!=null){
|
|
|
|
+ mapValue.put("orderType",orderType);
|
|
|
|
+ }
|
|
if (userIds!=null){
|
|
if (userIds!=null){
|
|
mapValue.put("userIds",userIds);
|
|
mapValue.put("userIds",userIds);
|
|
}
|
|
}
|
|
@@ -143,7 +147,8 @@ public class StatisticalReportController extends BaseRESTfulController {
|
|
String carrierSsoId,
|
|
String carrierSsoId,
|
|
String userId,
|
|
String userId,
|
|
String userIds,
|
|
String userIds,
|
|
- String con
|
|
|
|
|
|
+ String con,
|
|
|
|
+ Integer orderType
|
|
){
|
|
){
|
|
if(carrierSsoId != null){
|
|
if(carrierSsoId != null){
|
|
if(!"null".equals(carrierSsoId)){
|
|
if(!"null".equals(carrierSsoId)){
|
|
@@ -156,6 +161,9 @@ public class StatisticalReportController extends BaseRESTfulController {
|
|
if (userId!=null){
|
|
if (userId!=null){
|
|
mapValue.put("userId",userId);
|
|
mapValue.put("userId",userId);
|
|
}
|
|
}
|
|
|
|
+ if (orderType!=null){
|
|
|
|
+ mapValue.put("orderType",orderType);
|
|
|
|
+ }
|
|
if (userIds!=null){
|
|
if (userIds!=null){
|
|
mapValue.put("userIds",userIds);
|
|
mapValue.put("userIds",userIds);
|
|
}
|
|
}
|