| | |
| | | //page = baseMapper.selectComplaintPage(page, query, targetId, isSuperior); |
| | | page = baseMapper.selectComplaintPage1(page, query, accountLevel, targetId); |
| | | |
| | | for (ComplaintVO s : page.getRecords()) { |
| | | /* for (ComplaintVO s : page.getRecords()) { |
| | | buttonPermission(s, systemUserByPhone, loginUserInfoVO); |
| | | Integer auditButtonStatus = s.getAuditButtonStatus(); |
| | | |
| | | Long reporterId = s.getReporterId(); |
| | | Long superiorId = s.getSuperiorId2(); |
| | | if (!targetId.equals(reporterId) && !targetId.equals(superiorId) && (s.getStatus() == 5)) { |
| | | // s.setStatus(0); |
| | | s.setStatus(0); |
| | | } |
| | | } |
| | | }*/ |
| | | return page; |
| | | } |
| | | |
| | |
| | | vo.setPostponeTransactTotal(postponeTransactTotal); |
| | | |
| | | // 已办结 |
| | | int completeTransactTotal = (int) complaints.stream().filter(e -> e.getStatus() == 3).count(); |
| | | int completeTransactTotal = (int) complaints.stream().filter(e -> e.getStatus() == 3 || e.getStatus() == 8).count(); |
| | | vo.setCompleteTransactTotal(completeTransactTotal); |
| | | |
| | | // 超时办理总量 |