feat(REQ-7125) - 调整日志内容

This commit is contained in:
wangli 2026-03-25 15:08:28 +08:00
parent a6b2f126d1
commit 555467ea4d
2 changed files with 9 additions and 3 deletions

View File

@ -1765,10 +1765,16 @@ public class BpmnProcessInstanceServiceImpl implements BpmnProcessInstanceServic
build.setOperationDesc("系统处理");
break;
case autoPassed:
build.setOperationDesc("无需审批人,通过");
break;
case autoRejection:
build.setOperationDesc("无需审批人,驳回");
break;
case autoPassed_empty:
build.setOperationDesc("审批人为空,自动通过");
break;
case autoRejection_empty:
build.setOperationDesc("待审批");
build.setOperationDesc("审批人为空,系统驳回");
break;
case transferToAdmin:
build.setOperationDesc("找不到审批人且转交管理员失败,系统终止");

View File

@ -199,7 +199,7 @@ public class AutoOperatorEvent_101_Listener extends AbstractBpmnEventListener<Ta
}
private void autoReject(DelegateTask delegateTask) {
autoReject(delegateTask, "无需审批人,驳回");
autoReject(delegateTask, "驳回");
}
/**
@ -221,7 +221,7 @@ public class AutoOperatorEvent_101_Listener extends AbstractBpmnEventListener<Ta
* @param delegateTask 自动操作的任务
*/
private void autoPass(DelegateTask delegateTask) {
autoPass(delegateTask, null, "无需审批人,通过");
autoPass(delegateTask, null, "通过");
}
}