更新
This commit is contained in:
parent
e897418fa2
commit
c6b492bbc5
|
@ -26,13 +26,13 @@ public class ReconciliationDateTask {
|
|||
public void recordReconciliationDate() {
|
||||
// 获取昨日日期
|
||||
LocalDate now = LocalDate.now();
|
||||
LocalDate startDay = now.minusMonths(1);
|
||||
LocalDate startDay = now.minusDays(1);
|
||||
|
||||
while (now.isAfter(startDay)) {
|
||||
// 获取昨日对账数据
|
||||
ReconciliationDate po = dashboardService.selectReconciliationDateByDate(startDay);
|
||||
if (po == null) {
|
||||
log.error("昨日对账数据不存在,{}", startDay);
|
||||
log.error("{}对账数据不存在", startDay);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user