|
|
@@ -303,7 +303,6 @@ public class PurcInquiryController {
|
|
|
pageInfo.filter("status", Status.REPLIED.value());
|
|
|
pageInfo.filter("invalid", Constant.NO);
|
|
|
pageInfo.filter("overdue", Constant.NO);
|
|
|
- pageInfo.filter("decideStatus", Status.UNAUDIT.value());
|
|
|
SearchFilter filter = JSONObject.parseObject(searchFilter, SearchFilter.class);
|
|
|
return detailService.findByPageInfo(pageInfo, keyword, filter);
|
|
|
} else {
|
|
|
@@ -311,7 +310,6 @@ public class PurcInquiryController {
|
|
|
// 当前登录企业作为供应商
|
|
|
pageParams.getFilters().put("id_inid", SystemSession.getUser().getEnterprise().getUu());
|
|
|
pageParams.getFilters().put("id_status", Status.REPLIED.value());
|
|
|
- pageParams.getFilters().put("id_decidestatus", Status.UNAUDIT.value());
|
|
|
HashMap<String, Object> map = new HashMap<>();
|
|
|
map.put("id_invalid", Constant.YES);
|
|
|
pageParams.setNotEqualFilters(map);
|
|
|
@@ -338,6 +336,7 @@ public class PurcInquiryController {
|
|
|
pageInfo.filter("agreed", Constant.YES);
|
|
|
pageInfo.filter("status", Status.REPLIED.value());
|
|
|
pageInfo.filter("overdue", Constant.NO);
|
|
|
+ pageInfo.filter("invalid", Constant.NO);
|
|
|
SearchFilter filter = JSONObject.parseObject(searchFilter, SearchFilter.class);
|
|
|
SearchFilter distribute = userService.distribute();
|
|
|
if (distribute != null && distribute.getDistribute() == null) {
|
|
|
@@ -375,6 +374,7 @@ public class PurcInquiryController {
|
|
|
pageInfo.filter("agreed", Constant.NO);
|
|
|
pageInfo.filter("status", Status.REPLIED.value());
|
|
|
pageInfo.filter("overdue", Constant.NO);
|
|
|
+ pageInfo.filter("invalid", Constant.NO);
|
|
|
SearchFilter filter = JSONObject.parseObject(searchFilter, SearchFilter.class);
|
|
|
SearchFilter distribute = userService.distribute();
|
|
|
if (distribute != null && distribute.getDistribute() == null) {
|