【修复】消息中心-拼接的审批人为申请人问题
This commit is contained in:
parent
f57a7f3b9c
commit
f0084dc031
|
@ -193,7 +193,8 @@ public class ActivitiNoticeAspect {
|
||||||
if ("能力申请流程".equals(activitiNoticeOperation.process())) {
|
if ("能力申请流程".equals(activitiNoticeOperation.process())) {
|
||||||
type = 0;
|
type = 0;
|
||||||
//【进度通知】您发起的+资源名称+申请已通过+审核部门(已审核部门)+审核,下一节点为+审核部门+审核。
|
//【进度通知】您发起的+资源名称+申请已通过+审核部门(已审核部门)+审核,下一节点为+审核部门+审核。
|
||||||
content = "【进度通知】您发起的" + resourceName + "申请已被" + userDTO.getDeptName() + "的" + userDTO.getRealName() + "审核,审核结果为:" + finalResult;
|
SysUserDTO assignee = sysUserService.get(Long.valueOf(delegateTask.getAssignee()));
|
||||||
|
content = "【进度通知】您发起的" + resourceName + "申请已被" + assignee.getDeptName() + "的" + assignee.getRealName() + "审核,审核结果为:" + finalResult;
|
||||||
} else if ("能力资源上架".equals(activitiNoticeOperation.process())) {
|
} else if ("能力资源上架".equals(activitiNoticeOperation.process())) {
|
||||||
type = 2;
|
type = 2;
|
||||||
} else if ("能力资源下架".equals(activitiNoticeOperation.process())) {
|
} else if ("能力资源下架".equals(activitiNoticeOperation.process())) {
|
||||||
|
|
Loading…
Reference in New Issue