|
|
@@ -162,7 +162,6 @@ public class SaleQuotationController {
|
|
|
HashMap<String, Object> map = new HashMap<>();
|
|
|
map.put("qu_overdue", Constant.NO); // 未过报价截至有效期
|
|
|
pageParams.setNotEqualFilters(map);
|
|
|
- pageParams.getFilters().put("qu_status", Status.SUBMITTED.value());
|
|
|
pageParams.getFilters().put("qu_agreed", Constant.YES);
|
|
|
List<Sort> sortList = new ArrayList<>();
|
|
|
sortList.add(new Sort("qu_id", false, Type.LONG, new Long(1)));
|
|
|
@@ -199,7 +198,6 @@ public class SaleQuotationController {
|
|
|
HashMap<String, Object> map = new HashMap<>();
|
|
|
map.put("qu_overdue", Constant.NO); // 未过报价截至有效期
|
|
|
pageParams.setNotEqualFilters(map);
|
|
|
- pageParams.getFilters().put("qu_status", Status.SUBMITTED.value());
|
|
|
pageParams.getFilters().put("qu_agreed", Constant.NO);
|
|
|
List<Sort> sortList = new ArrayList<>();
|
|
|
sortList.add(new Sort("qu_id", false, Type.LONG, new Long(1)));
|
|
|
@@ -357,7 +355,6 @@ public class SaleQuotationController {
|
|
|
}
|
|
|
PageInfo pageInfo = new PageInfo(params);
|
|
|
pageInfo.filter("enUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
- pageInfo.filter("status", Status.SUBMITTED.value());
|
|
|
pageInfo.filter("agreed", Constant.YES);
|
|
|
pageInfo.filter("overdue", Constant.NO);
|
|
|
return saleQuotationService.findAllDetailByPageInfo(pageInfo, null, filter);
|
|
|
@@ -388,7 +385,6 @@ public class SaleQuotationController {
|
|
|
}
|
|
|
PageInfo pageInfo = new PageInfo(params);
|
|
|
pageInfo.filter("enUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
- pageInfo.filter("status", Status.SUBMITTED.value());
|
|
|
pageInfo.filter("agreed", Constant.NO);
|
|
|
pageInfo.filter("overdue", Constant.NO);
|
|
|
return saleQuotationService.findAllDetailByPageInfo(pageInfo, null, filter);
|