binxie
2024-01-16 288159458ce5ed2656021c774abc68ab1f761501
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
global class OPDPlanMarkBatchSchedule implements Schedulable {
    //SWAG-BA65JL 2019/03/22   XHL AddStart
    
    global void execute(SchedulableContext sc) {
        Date toDate = Date.today();
        Date yesterDate = toDate.addDays(-1);
        Date mon1stDate = Date.newInstance(toDate.year(), toDate.month(), 1);
        //每月到今天的工作日
        Integer workdays = UpdateUserTextColBatch.getOlympusWorkDayCount(mon1stDate, toDate);
        //每月到昨天的工作日
        Integer workdays1 = UpdateUserTextColBatch.getOlympusWorkDayCount(mon1stDate, yesterDate);
        Integer OSFBacth_Execute_Day = Integer.valueOf(System.Label.OSFBacth_Execute_Day);
        //以下为每个季度的第一个工作日执行,分别为4月、7月、10月、1月的第一个工作日执行,
        //OPD计划的特别执行,季度计划不参与执行,若需要执行,请调OPDQuarterPlanPhotographBatch里面的方法去执行,特此说明
        //获取这个月的月份
        Integer executeMonth = toDate.month();
        if (workdays1 != OSFBacth_Execute_Day && workdays == OSFBacth_Execute_Day) {
            if ( executeMonth == 1 || executeMonth == 4 || executeMonth == 7 || executeMonth == 10) {
                Database.executebatch(new OPDQuarterPlanPhotographBatch(), 100);
            }
        }
        // 2020-11-6   mzy update
        //if (workdays1 != OSFBacth_Execute_Day && workdays == OSFBacth_Execute_Day) {
        //  Id execBTId = database.executebatch(new OPDPlanMarkBatch(),100);
        //} 2020-11-6  mzy  update
 
        // 2020-11-6 mzy SWAG-BSC5WP   add start
        //每个月的倒数第二个工作日需要进行执行
        //获取这个月的最后一天
        Date days = Date.newInstance(toDate.year(), toDate.month() + 1, 0);
        Integer monDays = days.day();
        Date dayEnd = Date.newInstance(toDate.year(), toDate.month(), monDays);
        //获取这个月有多少个工作日
        Integer monWorkDays = UpdateUserTextColBatch.getOlympusWorkDayCount(mon1stDate, dayEnd);
        //获取判断今天是否是工作日
        List<OlympusCalendar__c> ssDay
            = [Select IsWorkDay__c From OlympusCalendar__c Where Date__c = :toDate];
        //如果 这个月的工作日天数 - 每个月开始到今天的工作日天数 = 1 并且 今天是工作日 , 则说明今天是倒数第二个工作日
        if (monWorkDays - workdays == 1 && ssDay != null && ssDay.size() > 0 && ssDay.get(0).IsWorkDay__c == 1 ) {
            // 将此执行语句转移至OPDPlanSystemDelayBatch finish内 SWAG-BXW4AH 【委托】 OPD计划再申请逻辑设置
            // Id execBTId = Database.executebatch(new OPDPlanMarkBatch(), 100);
            // 20231217 ljh 备品智能化 start
            // OPDPlanSystemDelayBatch 这个batch不在跑了,换成智能化项目先跑自动排序省的batch,finish再跑备品规则排序的batch,然后再把
            // OPDPlanSystemDelayBatch这个batch finish结束之后的batch  OPDPlanMarkBatch
            // Id execBTId = Database.executebatch(new OPDPlanSystemDelayBatch(), 100);
            Id execBTId = Database.executebatch(new OPDAutomaticSortBatch(), 100);
            // 20231217 ljh 备品智能化 end
 
        }
        // 2020-11-6 mzy SWAG-BSC5WP   add  end
        
        // ==========================================================================================
        // 2021-02-19 XHL SWAG-BYD6DD Start
        // 这个月的工作日天数 - 每个月开始到今天的工作日天数 = 3 并且 今天是工作日 , 则说明今天是倒数第4个工作日
        if (monWorkDays - workdays == 3 && ssDay != null && ssDay.size() > 0 && ssDay.get(0).IsWorkDay__c == 1) {
            Id execBTId = Database.executebatch(new OPDLendSortCopyToSortBeforeBatch(), 100);
        }
        // 2021-02-19 XHL SWAG-BYD6DD End
        // =========================================================================================
    }
        //add by allen 拆分部署ali生产
        public void testMock1(){
            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++;
            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++;
            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++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            i++;
            
 
}
 
}