修改bug

This commit is contained in:
guoshengxiong 2025-03-26 22:00:18 +08:00
parent ed80d179f9
commit 81ecbc5d32

View File

@ -437,7 +437,9 @@ public class ProcessInstanceServiceImpl implements ProcessInstanceService {
instanceQuery.finished();
}
if (!Objects.equals(customStatus, 1) && !Objects.equals(customStatus, 2)) {
instanceQuery.startedBy(startUser);
if (StrUtil.isNotBlank(startUser)) {
instanceQuery.startedBy(startUser);
}
}
Executor.builder()
//customStatus 1待催办2已办结3审批进行中4审批被撤销5审批被驳回6审批通过7审批被驳回(发起人是自己)