|
@@ -166,7 +166,7 @@ public class OmstruckOrderSeparateController extends BaseRESTfulController {
|
|
|
Integer pageSize,
|
|
|
Integer type,
|
|
|
Integer orderStatus,
|
|
|
- Integer carrierId,
|
|
|
+ String carrierId,
|
|
|
String con) {
|
|
|
int count = 0;
|
|
|
if (orderStatus != null) {
|
|
@@ -177,7 +177,7 @@ public class OmstruckOrderSeparateController extends BaseRESTfulController {
|
|
|
mapValue.put("type", type);
|
|
|
count++;
|
|
|
}
|
|
|
- if (carrierId != null) {
|
|
|
+ if (carrierId != null && !"undefined".equals(carrierId)) {
|
|
|
mapValue.put("carrierId", carrierId);
|
|
|
count++;
|
|
|
}
|