bug修复

This commit is contained in:
liang.chao 2025-05-29 14:02:06 +08:00
parent 8cf04475f9
commit daa39f2b6c
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public class PermissionController {
permission.getChild().forEach(c -> {
if (c.getHref().equals("pages/evaluate/outsourceAudit/outsourceAuditList.html")) {
for (OutSourceBean outSourceBean : outSourceBeans) {
if ((Integer.parseInt(outSourceBean.getEvaluateNum())) > 0 && (Integer.parseInt(outSourceBean.getIsApprove())) == 0){
if ((Integer.parseInt(outSourceBean.getEvaluateNum())) > 0 && (Integer.parseInt(outSourceBean.getIsApprove())) == 0 && org.apache.commons.lang3.StringUtils.isBlank(outSourceBean.getRejectReason())){
c.setIsCheck(1);
}
}