|
@@ -1104,7 +1104,8 @@ public class OmstruckOrderController extends BaseRESTfulController {
|
|
Integer orderStatus,
|
|
Integer orderStatus,
|
|
String carrierId,
|
|
String carrierId,
|
|
String con,
|
|
String con,
|
|
- Integer planEnableStatus) {
|
|
|
|
|
|
+ Integer planEnableStatus,
|
|
|
|
+ String userId) {
|
|
|
|
|
|
if (mapValue == null) {
|
|
if (mapValue == null) {
|
|
mapValue = new HashMap<>();
|
|
mapValue = new HashMap<>();
|
|
@@ -1115,6 +1116,12 @@ public class OmstruckOrderController extends BaseRESTfulController {
|
|
if (planEnableStatus != null && !"undefined".equals(planEnableStatus)) {
|
|
if (planEnableStatus != null && !"undefined".equals(planEnableStatus)) {
|
|
mapValue.put("planEnableStatus",planEnableStatus);
|
|
mapValue.put("planEnableStatus",planEnableStatus);
|
|
}
|
|
}
|
|
|
|
+ if(con!=null && !"".equals(con) && !"undefined".equals(con) && !"null".equals(con)){
|
|
|
|
+ mapValue.put("con",con);
|
|
|
|
+ }
|
|
|
|
+ if(userId!=null && !"".equals(userId) && !"undefined".equals(userId)){
|
|
|
|
+ mapValue.put("userId",userId);
|
|
|
|
+ }
|
|
mapValue.put("orderStatus",orderStatus);
|
|
mapValue.put("orderStatus",orderStatus);
|
|
PageHelper.startPage(pageNum,pageSize);
|
|
PageHelper.startPage(pageNum,pageSize);
|
|
List<Map<String, Object>> columnList = omstruckOrderService.getPurInwardOrderList(mapValue);
|
|
List<Map<String, Object>> columnList = omstruckOrderService.getPurInwardOrderList(mapValue);
|