| | |
| | | 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; |
| | |
| | | } |
| | | //审核不通过 |
| | | if (complaintAuditRecord.getAuditType().equals(1) && complaintAuditRecord.getAuditStatus().equals(0) && dto.getAuditResult().equals(2)) { |
| | | Complaint complaint = getById(complaintAuditRecord.getComplaintId()); |
| | | // 设置为正在办理 |
| | | complaint.setStatus(0); |
| | | updateById(complaint); |
| | | |
| | | complaintAuditRecord.setRejectReason(dto.getRejectReason()); |
| | | complaintAuditRecord.setAuditStatus(2); |
| | | complaintAuditRecord.setAuditorId(loginUserInfoVO.getUserId()); |