代码提交

This commit is contained in:
liang.chao 2025-07-21 10:46:51 +08:00
parent 855c0b9ec9
commit 476d785dba
2 changed files with 9 additions and 6 deletions

View File

@ -1296,6 +1296,9 @@ public class OutsourcerEvaluateServiceImpl implements OutsourcerEvaluateService
o.setPostId(orgId); o.setPostId(orgId);
} }
List<String> stringList = dao.getExaminePersonByDeptAndRoleName(o.getPostId(), "审批人"); List<String> stringList = dao.getExaminePersonByDeptAndRoleName(o.getPostId(), "审批人");
if (o.getPostId().equals("7")){
stringList.addAll(dao.getExaminePersonByDeptAndRoleName(o.getPostId(), "汇总审批人"));
}
o.setUserList(String.join(",", stringList)); o.setUserList(String.join(",", stringList));
return dao.addExaminePerson(o); return dao.addExaminePerson(o);
} }