Merge remote-tracking branch 'origin/master'

# Conflicts:
#	gather-app/src/main/java/com/ruoyi/business/controller/ApprovalProcessController.java
This commit is contained in:
hanrenchun 2025-06-10 00:29:30 +08:00
commit e5bc9c7dac
3 changed files with 9 additions and 8 deletions

View File

@ -82,7 +82,7 @@ public class ApprovalProcessController extends BaseController {
} }
} }
} }
}else { } else {
continue; continue;
} }
} }
@ -102,7 +102,7 @@ public class ApprovalProcessController extends BaseController {
} }
} }
} }
}else { } else {
continue; continue;
} }
} }
@ -122,7 +122,7 @@ public class ApprovalProcessController extends BaseController {
} }
} }
} }
}else { } else {
continue; continue;
} }
}else { }else {

View File

@ -228,8 +228,9 @@ public class NonWorkingDayDrinkingReportController extends BaseController {
boolean result1 = gwglLogService.lambdaUpdate() boolean result1 = gwglLogService.lambdaUpdate()
.eq(gwglLog::getApplyNo, nonWorkingDayDrinkingReport.getApplyNo()) .eq(gwglLog::getApplyNo, nonWorkingDayDrinkingReport.getApplyNo())
.set(gwglLog::getResult, 1) .set(gwglLog::getResult, 1)
.set(gwglLog::getReason, dto.getReason())
.set(gwglLog::getChecker, user.getNickName()) .set(gwglLog::getChecker, user.getNickName())
.set(gwglLog::getCheckTime, System.currentTimeMillis()) .set(gwglLog::getCheckTime, System.currentTimeMillis()/1000L)
.set(gwglLog::getCheckState, state) .set(gwglLog::getCheckState, state)
.update(); .update();

View File

@ -251,7 +251,7 @@ public class PoliceLeaveApprovalController extends BaseController {
one.setType(1); one.setType(1);
one.setReason(policeLeaveApproval.getReason()); one.setReason(policeLeaveApproval.getReason());
one.setChecker(user.getNickName()); one.setChecker(user.getNickName());
one.setCheckTime(System.currentTimeMillis()); one.setCheckTime(System.currentTimeMillis()/1000L);
one.setCheckState(state); one.setCheckState(state);
boolean result = gwglLogService.updateById(one); boolean result = gwglLogService.updateById(one);
@ -285,7 +285,7 @@ public class PoliceLeaveApprovalController extends BaseController {
gwglLog.setType(policeLeaveApproval.getLeaveType()); gwglLog.setType(policeLeaveApproval.getLeaveType());
gwglLog.setReason(policeLeaveApproval.getReason()); gwglLog.setReason(policeLeaveApproval.getReason());
gwglLog.setChecker("刘成志和陈列"); gwglLog.setChecker("刘成志和陈列");
gwglLog.setCheckTime(System.currentTimeMillis()); gwglLog.setCheckTime(System.currentTimeMillis()/1000L);
gwglLog.setCheckState(state); gwglLog.setCheckState(state);
boolean result1 = gwglLogService.save(gwglLog); boolean result1 = gwglLogService.save(gwglLog);
} else if ("admin".equals(user.getUserName())) { } else if ("admin".equals(user.getUserName())) {
@ -306,7 +306,7 @@ public class PoliceLeaveApprovalController extends BaseController {
gwglLog.setType(policeLeaveApproval.getLeaveType()); gwglLog.setType(policeLeaveApproval.getLeaveType());
gwglLog.setReason(policeLeaveApproval.getReason()); gwglLog.setReason(policeLeaveApproval.getReason());
gwglLog.setChecker(user.getNickName()); gwglLog.setChecker(user.getNickName());
gwglLog.setCheckTime(System.currentTimeMillis()); gwglLog.setCheckTime(System.currentTimeMillis()/1000L);
gwglLog.setCheckState(state); gwglLog.setCheckState(state);
boolean result1 = gwglLogService.save(gwglLog); boolean result1 = gwglLogService.save(gwglLog);
@ -332,7 +332,7 @@ public class PoliceLeaveApprovalController extends BaseController {
one.setType(1); one.setType(1);
one.setReason(policeLeaveApproval.getReason()); one.setReason(policeLeaveApproval.getReason());
one.setChecker(user.getNickName()); one.setChecker(user.getNickName());
one.setCheckTime(System.currentTimeMillis()); one.setCheckTime(System.currentTimeMillis()/1000L);
one.setCheckState(state); one.setCheckState(state);
boolean result1 = gwglLogService.updateById(one); boolean result1 = gwglLogService.updateById(one);
boolean result = approvalsProcessService.lambdaUpdate() boolean result = approvalsProcessService.lambdaUpdate()