Compare commits

..

2 Commits

Author SHA1 Message Date
李京通 673482afd3 Merge remote-tracking branch 'origin/master' 2025-06-09 23:53:04 +08:00
李京通 e60d556bbf feat: 当前部门出现在最顶部 2025-06-09 23:52:58 +08:00
1 changed files with 5 additions and 3 deletions

View File

@ -62,6 +62,8 @@ public class ApprovalProcessController extends BaseController {
if (approvalProcess.getSubmitterId() != null) {
queryWrapper.eq("submitter_id", getLoginUser().getUserId());
} else {
queryWrapper.ne("submitter_id", getLoginUser().getUserId());
}
List<ApprovalProcess> list = approvalsProcessService.list(queryWrapper);
List<ApprovalProcess> newList = new ArrayList<>();