高章伟
2022-02-24 2aa8da8af66aa8ae00f25831aed6bb0364176e7b
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
global without sharing class FixtureRemindSnapshotBatch implements Database.Batchable<sObject>, Database.Stateful {
    global List<String> errorList = new List<String>();
    global Integer allCount = 0;
    global Integer doneCount = 0;
 
    private ScBean scB;
 
    global Database.QueryLocator start(Database.BatchableContext bc) {
        Integer i = 0;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
        i ++;
 
        Datetime dt = System.now();
        scB = setSc('FixtureRemindSnapshotSchedule');
        if (System.Test.isRunningTest() == false) {
            for(CronTrigger ct : [SELECT Id FROM CronTrigger WHERE CronJobDetail.Name =: scB.scName]) {
                System.abortJob(ct.Id);
            }
            system.schedule(scB.scName, scB.scTime, new FixtureRemindSnapshotSchedule());
        }
        String formattedDate = dt.format('YYYY-MM-dd');
        String query = 'SELECT Id FROM OlympusCalendar__c WHERE IsWorkDay__c > 0 AND Date__c = ' + formattedDate;
        System.debug(query);
        return Database.getQueryLocator(query);
    }
 
    public ScBean setSc(String baseName) {
        Datetime dt = Datetime.now();
        // 2021-12-30 format修改
        // Integer year = Integer.valueOf(dt.format('YYYY'));
        Integer year = Integer.valueOf(dt.format('yyyy'));
        Integer month = Integer.valueOf(dt.format('MM'));
        Integer day = Integer.valueOf(dt.format('dd'));
        Integer hour = Integer.valueOf(dt.format('HH'));
        Integer min = Integer.valueOf(dt.format('mm'));
        ScBean b = new ScBean();
        if (hour == 17 && min >= 30) {
            dt = Datetime.now().addDays(1);
            // year = Integer.valueOf(dt.format('YYYY'));
            year = Integer.valueOf(dt.format('yyyy'));
            month = Integer.valueOf(dt.format('MM'));
            day = Integer.valueOf(dt.format('dd'));
            hour = Integer.valueOf(dt.format('HH'));
            min = Integer.valueOf(dt.format('mm'));
            b.scName = baseName + '001';
            b.scTime = '0 ' + '0' + ' ' + '9' + ' ' + day + ' ' + month + ' ? ' + year;
        }
        else if (hour < 9) {
            b.scName = baseName + '001';
            b.scTime = '0 ' + '0' + ' ' + '9' + ' ' + day + ' ' + month + ' ? ' + year;
        }
        else if (hour < 11) {
            b.scName = baseName + '002';
            b.scTime = '0 ' + '30' + ' ' + '11' + ' ' + day + ' ' + month + ' ? ' + year;
        }
        else if (hour < 13) {
            b.scName = baseName + '003';
            b.scTime = '0 ' + '0' + ' ' + '13' + ' ' + day + ' ' + month + ' ? ' + year;
        }
        else if (hour < 14) {
            b.scName = baseName + '004';
            b.scTime = '0 ' + '0' + ' ' + '14' + ' ' + day + ' ' + month + ' ? ' + year;
        }
        else if (hour < 15) {
            b.scName = baseName + '005';
            b.scTime = '0 ' + '0' + ' ' + '15' + ' ' + day + ' ' + month + ' ? ' + year;
        }
        else {
            b.scName = baseName + '006';
            b.scTime = '0 ' + '30' + ' ' + '17' +' ' + day + ' ' + month + ' ? ' + year;
 
        }
        return b;
    }
 
    global void execute(Database.BatchableContext BC, list<OlympusCalendar__c> ocList) {
        // allCount += 3;
        allCount += 35;
        if(ocList.isEmpty()){
            return;
        }
        Savepoint sp = Database.setSavepoint();
        try {
            FixtureRemindUtil frUtil = new FixtureRemindUtil();
            frUtil.init();
            FixtureRemindSnapshot__c frsNorth = frUtil.createSnapshotRecord('北方');
            FixtureRemindSnapshot__c frsSouth = frUtil.createSnapshotRecord('南方');
            FixtureRemindSnapshot__c frsEast = frUtil.createSnapshotRecord('华东');
 
            //update by rentx 20210719 start
            // insert new List<FixtureRemindSnapshot__c> {frsNorth, frsSouth, frsEast};
            // doneCount += 3;
            FixtureRemindForAgencyRequestController col = new FixtureRemindForAgencyRequestController();
            col.makeData();
            List<FixtureRemindSnapshot__c> slist = new List<FixtureRemindSnapshot__c>();
            for (String str : FixtureRemindForAgencyRequestController.BSC_ADDR_LIST) {
                if (str != '合计') {
                    FixtureRemindSnapshot__c shot = col.createSnapshotRecord(str);
                    if (shot != null) {
                        slist.add(shot);                        
                    }
                }
            }
            slist.add(frsEast);
            slist.add(frsSouth);
            slist.add(frsNorth);
            insert slist;
            doneCount += 35;
            //update by rentx 20210719 end
            
        }
        catch (Exception e) {
            Database.rollback(sp);
            errorList.add(e.getMessage() + '\n' + e.getStackTraceString());
            System.debug(LoggingLevel.ERROR, e.getMessage() + '\n' + e.getStackTraceString());
            throw e;
        }
    }
 
    global void finish(Database.BatchableContext BC) {
        UpdateRentalApplyBatch.removeOtherSc('FixtureRemindSnapshotSchedule', scB.scName);
        if (allCount != doneCount || errorList.size() > 0) {
            BatchEmailUtil be = new BatchEmailUtil();
            String[] toList = new String[]{};
            String title = '首页通知快照更新失败';
            String[] ccList = new String[]{};
            for (OrgWideEmailAddress tmpEmailObj : [SELECT Id, Address, DisplayName
                    FROM OrgWideEmailAddress
                    WHERE DisplayName like 'BatchNotify']) {
                toList.add(tmpEmailObj.Address);
            }
            be.failedMail(toList, ccList, title, String.join(this.errorList, '\n'), allCount, doneCount, errorList.size());
            be.send();
        }
    }
 
    public Class ScBean {
        public String scName;
        public String scTime;
    }
}