Skip to content

Commit

Permalink
fix: 周报扣分bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lilingj committed Oct 10, 2022
1 parent 2874a4a commit 0096a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/softeng/dingtalk/component/Timer.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void weeklyReportAndPerformanceFillingReminder() {
@Scheduled(cron = "0 0 2 ? * MON")
public void deductedPointsUnsubmittedWeeklyReport() {
log.info(LocalDate.now() + " 定时扫描扣分");
systemService.manulDeductedPointsUnsubmittedWeeklyReport(LocalDate.now());
systemService.manulDeductedPointsUnsubmittedWeeklyReport(LocalDate.now().minusDays(1));
}

//每天凌晨扫描一次,会议的AC结算
Expand Down

0 comments on commit 0096a32

Please sign in to comment.