高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
 * Created by T on 2020/5/21.
 */
 
global class MonthEndAutoJudgeSchedule implements Schedulable {
 
    // //  需在每个月最后一天运行
    // global void execute(SchedulableContext SC) {
    //     // 获取当前月份的第一天
    //     Date firstDayOfMonth = Date.today().toStartOfMonth();
    //     // 将月份推到下一个月
    //     Date nextMonth = Date.newInstance(firstDayOfMonth.year(), firstDayOfMonth.month() + 1, 1);
    //     // 获取当前月份最后一天
    //     Date lastDayOfMonth = nextMonth.addDays(-1);
 
    //     if (String.valueOf(Date.today()).equals(String.valueOf(lastDayOfMonth))) {
    //         Database.executeBatch(new MonthEndAutoJudgeBatch(),20);
    //     }
    // }
 
    //每个月最后一个工作日凌晨运行完毕 CHAN-BUZC7V update by rentx 2020-11-05 start
    global void execute(SchedulableContext SC) {
        // 获取当前月份的第一天
        Date firstDayOfMonth = Date.today().toStartOfMonth();
        // 将月份推到下一个月
        Date nextMonth = Date.newInstance(firstDayOfMonth.year(), firstDayOfMonth.month() + 1, 1);
        // 获取当前月份最后一天
        Date lastDayOfMonth = nextMonth.addDays(-1);
        //获取当前月份的最后一个工作日
        List<OlympusCalendar__c> ssDay 
        = [Select Date__c From OlympusCalendar__c Where Date__c >= :firstDayOfMonth And Date__c <= :lastDayOfMonth And IsWorkDay__c = 1 order by Date__c desc limit 1];
 
        if (ssDay != null && ssDay.size() > 0) {
            if (String.valueOf(Date.today()).equals(String.valueOf(ssDay.get(0).Date__c))) {
                Database.executeBatch(new MonthEndAutoJudgeBatch(),20);
            }
        }
        
    }
    //CHAN-BUZC7V update by rentx 2020-11-05 end
}