Compare commits
No commits in common. "e5bc9c7dac117f7fdb60a3d6e48dc93d3eaf705f" and "4e4aa7f95ac41787f31485c8b20f70eb3828597c" have entirely different histories.
e5bc9c7dac
...
4e4aa7f95a
|
@ -61,7 +61,9 @@ public class ApprovalProcessController extends BaseController {
|
|||
}
|
||||
|
||||
if (approvalProcess.getSubmitterId() != null) {
|
||||
queryWrapper.eq("submitter_id", approvalProcess.getSubmitterId());
|
||||
queryWrapper.eq("submitter_id", getLoginUser().getUserId());
|
||||
} else {
|
||||
queryWrapper.ne("submitter_id", getLoginUser().getUserId());
|
||||
}
|
||||
List<ApprovalProcess> list = approvalsProcessService.list(queryWrapper);
|
||||
List<ApprovalProcess> newList = new ArrayList<>();
|
||||
|
@ -86,7 +88,7 @@ public class ApprovalProcessController extends BaseController {
|
|||
continue;
|
||||
}
|
||||
}
|
||||
else if (process.getMatterType() == 3) {
|
||||
if (process.getMatterType() == 3) {
|
||||
List<gwglLog> list1 = gwglLogService.lambdaQuery()
|
||||
.eq(gwglLog::getApplyNo, process.getApprovalNo())
|
||||
.orderByAsc(gwglLog::getCreateTime).list();
|
||||
|
@ -106,7 +108,7 @@ public class ApprovalProcessController extends BaseController {
|
|||
continue;
|
||||
}
|
||||
}
|
||||
else if (process.getMatterType() == 4) {
|
||||
if (process.getMatterType() == 4) {
|
||||
List<gwglLog> list1 = gwglLogService.lambdaQuery()
|
||||
.eq(gwglLog::getApplyNo, process.getApprovalNo())
|
||||
.orderByAsc(gwglLog::getCreateTime).list();
|
||||
|
@ -125,8 +127,6 @@ public class ApprovalProcessController extends BaseController {
|
|||
} else {
|
||||
continue;
|
||||
}
|
||||
}else {
|
||||
continue;
|
||||
}
|
||||
// 如果创建时间为当天的时间
|
||||
if (process.getCreateTime() > System.currentTimeMillis() - 24 * 60 * 60 * 1000) {
|
||||
|
|
Loading…
Reference in New Issue