Compare commits
2 Commits
aaaaf826fd
...
673482afd3
| Author | SHA1 | Date |
|---|---|---|
|
|
673482afd3 | |
|
|
e60d556bbf |
|
|
@ -62,6 +62,8 @@ public class ApprovalProcessController extends BaseController {
|
||||||
|
|
||||||
if (approvalProcess.getSubmitterId() != null) {
|
if (approvalProcess.getSubmitterId() != null) {
|
||||||
queryWrapper.eq("submitter_id", getLoginUser().getUserId());
|
queryWrapper.eq("submitter_id", getLoginUser().getUserId());
|
||||||
|
} else {
|
||||||
|
queryWrapper.ne("submitter_id", getLoginUser().getUserId());
|
||||||
}
|
}
|
||||||
List<ApprovalProcess> list = approvalsProcessService.list(queryWrapper);
|
List<ApprovalProcess> list = approvalsProcessService.list(queryWrapper);
|
||||||
List<ApprovalProcess> newList = new ArrayList<>();
|
List<ApprovalProcess> newList = new ArrayList<>();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue