高章伟
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
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
@isTest
private class Product2HandlerTest {    
    @isTest 
    static void insertProduct2_1() {
        // 产品
        Product2 pro5 = new Product2(Name='name05',IsActive=true,Family='SP',
                Fixture_Model_No__c='n05',Serial_Lot_No__c='S/N tracing',
                Fixture_Model_No_T__c = 'n05',
                ProductCode_Ext__c='pc05',Manual_Entry__c=false,
                StorageStatus__c = '',StorageStatusNo__c = 22,
                WhiteSpace__c = true);
        insert pro5;
 
        List<Product2> product2s = [select Id,Name,StorageStatus__c from Product2];
 
        System.assertEquals(1, product2s.size());
        System.assertEquals('22', product2s[0].StorageStatus__c);
    }
 
    @isTest 
    static void insertProduct2_2() {
        // 产品
        Product2 pro5 = new Product2(Name='name05',IsActive=true,Family='SP',
                Fixture_Model_No__c='n05',Serial_Lot_No__c='S/N tracing',
                Fixture_Model_No_T__c = 'n05',
                ProductCode_Ext__c='pc05',Manual_Entry__c=false,
                StorageStatus__c = '',StorageStatusNo__c = 22,
                WhiteSpace__c = false);
        insert pro5;
        List<Product2> product2s = [select Id,Name,StorageStatus__c from Product2];
 
        System.assertEquals(1, product2s.size());
        System.assertEquals(null, product2s[0].StorageStatus__c);
 
        pro5.WhiteSpace__c = true;
        update pro5;
        product2s = [select Id,Name,StorageStatus__c from Product2];
 
        System.assertEquals(1, product2s.size());
        System.assertEquals('22', product2s[0].StorageStatus__c);
 
    }
 
        //SFDC停止预警  lt  20210922 add start
        @isTest 
    static void CalAverageMonthSales(){
 
        Product2 pro5 = new Product2(Name='name05',IsActive=true,Family='SP',
                Fixture_Model_No__c='n05',Serial_Lot_No__c='S/N tracing',
                Fixture_Model_No_T__c = 'n05',
                ProductCode_Ext__c='pc05',Manual_Entry__c=false,
                StorageStatus__c = '',StorageStatusNo__c = 22,
                WhiteSpace__c = false,
                M_BC_Stop_manufacure__c =Date.today());
        insert pro5;
 
        Product2 pro6 = new Product2();
        pro6.Name = 'name06';
        pro6.IsActive=true;
        pro6.Family='SP';
        pro6.Fixture_Model_No__c='n05';
        pro6.Serial_Lot_No__c='S/N tracing';
        pro6.Fixture_Model_No_T__c = 'n05';
        pro6.ProductCode_Ext__c='pc05';
        pro6.Manual_Entry__c=false;
        pro6.StorageStatus__c = '';
        pro6.StorageStatusNo__c = 22;
        pro6.WhiteSpace__c = false;
        //pro6.M_BC_Stop_manufacure__c = Date.today();
        pro6.SFDA_Status__c = '有効';
        pro6.Correspond_Code__c = pro5.Id;
        pro6.M_BC_Stop_manufacure__c =Date.today().addDays(1);
        insert pro6;
 
        ProductMonthlySales__c ms = new ProductMonthlySales__c();
        ms.MonthSales__c = 6;
        ms.CurrentDate__c = Date.today();
        ms.ProductM__c = pro6.Id;
        ms.Product2Model__c = 'test123';
        insert ms;
 
        ProductMonthlySales__c ms1 = new ProductMonthlySales__c();
        ms1.MonthSales__c = 6;
        ms1.CurrentDate__c = Date.today();
        ms1.ProductM__c = pro6.Id;
        ms1.Product2Model__c = 'test123';
        insert ms1;
 
        ProductMonthlySales__c ms2 = new ProductMonthlySales__c();
        ms2.MonthSales__c = 6;
        ms2.CurrentDate__c = Date.today();
        ms2.ProductM__c = pro6.Id;
        ms2.Product2Model__c = 'test123';
        insert ms2;
 
        ProductMonthlySales__c ms3 = new ProductMonthlySales__c();
        ms3.MonthSales__c = 6;
        ms3.CurrentDate__c = Date.today();
        ms3.ProductM__c = pro6.Id;
        ms3.Product2Model__c = 'test123';
        insert ms3;
 
        ProductMonthlySales__c ms4 = new ProductMonthlySales__c();
        ms4.MonthSales__c = 6;
        ms4.CurrentDate__c = Date.today();
        ms4.ProductM__c = pro6.Id;
        ms4.Product2Model__c = 'test123';
        insert ms4;
 
        ProductMonthlySales__c ms5 = new ProductMonthlySales__c();
        ms5.MonthSales__c = 6;
        ms5.CurrentDate__c = Date.today();
        ms5.ProductM__c = pro6.Id;
        ms5.Product2Model__c = 'test123';
        insert ms5;
 
        ProductMonthlySales__c ms6 = new ProductMonthlySales__c();
        ms6.MonthSales__c = 6;
        ms6.CurrentDate__c = Date.today();
        ms6.ProductM__c = pro6.Id;
        ms6.Product2Model__c = 'test123';
        insert ms6;
 
        ProductMonthlySales__c ms7 = new ProductMonthlySales__c();
        ms7.MonthSales__c = 6;
        ms7.CurrentDate__c = Date.today();
        ms7.ProductM__c = pro6.Id;
        ms7.Product2Model__c = 'test123';
        insert ms7;
 
        ProductMonthlySales__c ms8 = new ProductMonthlySales__c();
        ms8.MonthSales__c = 6;
        ms8.CurrentDate__c = Date.today();
        ms8.ProductM__c = pro6.Id;
        ms8.Product2Model__c = 'test123';
        insert ms8;
 
        ProductMonthlySales__c ms9 = new ProductMonthlySales__c();
        ms9.MonthSales__c = 6;
        ms9.CurrentDate__c = Date.today();
        ms9.ProductM__c = pro6.Id;
        ms9.Product2Model__c = 'test123';
        insert ms9;
 
        ProductMonthlySales__c msa = new ProductMonthlySales__c();
        msa.MonthSales__c = 6;
        msa.CurrentDate__c = Date.today();
        msa.ProductM__c = pro6.Id;
        msa.Product2Model__c = 'test123';
        insert msa;
 
        ProductMonthlySales__c msb = new ProductMonthlySales__c();
        msb.MonthSales__c = 6;
        msb.CurrentDate__c = Date.today();
        msb.ProductM__c = pro6.Id;
        msb.Product2Model__c = 'test123';
        insert msb;
 
        ProductMonthlySales__c msnew = new ProductMonthlySales__c();
        msnew.MonthSales__c = 6;
        msnew.CurrentDate__c = Date.today();
        msnew.ProductM__c = pro5.Id;
        msnew.Product2Model__c = 'test123';
        insert msnew;
 
        ProductMonthlySales__c msnew1 = new ProductMonthlySales__c();
        msnew1.MonthSales__c = 6;
        msnew1.CurrentDate__c = Date.today();
        msnew1.ProductM__c = pro5.Id;
        msnew1.Product2Model__c = 'test123';
        insert msnew1;
 
        ProductMonthlySales__c msnew2 = new ProductMonthlySales__c();
        msnew2.MonthSales__c = 6;
        msnew2.CurrentDate__c = Date.today();
        msnew2.ProductM__c = pro5.Id;
        msnew2.Product2Model__c = 'test123';
        insert msnew2;
 
        ProductMonthlySales__c msnew3 = new ProductMonthlySales__c();
        msnew3.MonthSales__c = 6;
        msnew3.CurrentDate__c = Date.today();
        msnew3.ProductM__c = pro5.Id;
        msnew3.Product2Model__c = 'test123';
        insert msnew3;
 
        ProductMonthlySales__c msnew4 = new ProductMonthlySales__c();
        msnew4.MonthSales__c = 6;
        msnew4.CurrentDate__c = Date.today();
        msnew4.ProductM__c = pro5.Id;
        msnew4.Product2Model__c = 'test123';
        insert msnew4;
 
        ProductMonthlySales__c msnew5 = new ProductMonthlySales__c();
        msnew5.MonthSales__c = 6;
        msnew5.CurrentDate__c = Date.today();
        msnew5.ProductM__c = pro5.Id;
        msnew5.Product2Model__c = 'test123';
        insert msnew5;
 
        ProductMonthlySales__c msnew6 = new ProductMonthlySales__c();
        msnew6.MonthSales__c = 6;
        msnew6.CurrentDate__c = Date.today();
        msnew6.ProductM__c = pro5.Id;
        msnew6.Product2Model__c = 'test123';
        insert msnew6;
 
        ProductMonthlySales__c msnew7 = new ProductMonthlySales__c();
        msnew7.MonthSales__c = 6;
        msnew7.CurrentDate__c = Date.today();
        msnew7.ProductM__c = pro5.Id;
        msnew7.Product2Model__c = 'test123';
        insert msnew7;
 
        ProductMonthlySales__c msnew8 = new ProductMonthlySales__c();
        msnew8.MonthSales__c = 6;
        msnew8.CurrentDate__c = Date.today();
        msnew8.ProductM__c = pro5.Id;
        msnew8.Product2Model__c = 'test123';
        insert msnew8;
 
        ProductMonthlySales__c msnew9 = new ProductMonthlySales__c();
        msnew9.MonthSales__c = 6;
        msnew9.CurrentDate__c = Date.today();
        msnew9.ProductM__c = pro5.Id;
        msnew9.Product2Model__c = 'test123';
        insert msnew9;
 
        ProductMonthlySales__c msnew10 = new ProductMonthlySales__c();
        msnew10.MonthSales__c = 6;
        msnew10.CurrentDate__c = Date.today();
        msnew10.ProductM__c = pro5.Id;
        msnew10.Product2Model__c = 'test123';
        insert msnew10;
 
        ProductMonthlySales__c msnew11 = new ProductMonthlySales__c();
        msnew11.MonthSales__c = 6;
        msnew11.CurrentDate__c = Date.today();
        msnew11.ProductM__c = pro5.Id;
        msnew11.Product2Model__c = 'test123';
        insert msnew11;
 
        pro6.StorageStatusNo__c = 20;
        update pro6;
 
        }
 
        @isTest 
    static void CalAverageMonthSales2(){
 
        Product2 pro5 = new Product2(Name='name05',IsActive=true,Family='SP',
                Fixture_Model_No__c='n05',Serial_Lot_No__c='S/N tracing',
                Fixture_Model_No_T__c = 'n05',
                ProductCode_Ext__c='pc05',Manual_Entry__c=false,
                StorageStatus__c = '',StorageStatusNo__c = 22,
                WhiteSpace__c = false,
                M_BC_Stop_manufacure__c = Date.today());
        insert pro5;
 
        Product2 pro6 = new Product2();
        pro6.Name = 'name06';
        pro6.IsActive=true;
        pro6.Family='SP';
        pro6.Fixture_Model_No__c='n05';
        pro6.Serial_Lot_No__c='S/N tracing';
        pro6.Fixture_Model_No_T__c = 'n05';
        pro6.ProductCode_Ext__c='pc05';
        pro6.Manual_Entry__c=false;
        pro6.StorageStatus__c = '';
        pro6.StorageStatusNo__c = 22;
        pro6.WhiteSpace__c = false;
        pro6.M_BC_Stop_manufacure__c = Date.today().addDays(1);
        pro6.SFDA_Status__c = '有効';
        pro6.Correspond_Code__c = pro5.Id;
        insert pro6;
 
        ProductMonthlySales__c ms = new ProductMonthlySales__c();
        ms.MonthSales__c = 6;
        ms.CurrentDate__c = Date.today();
        ms.ProductM__c = pro6.Id;
        ms.Product2Model__c = 'test123';
        insert ms;
 
        ProductMonthlySales__c msnew = new ProductMonthlySales__c();
        msnew.MonthSales__c = 6;
        msnew.CurrentDate__c = Date.today();
        msnew.ProductM__c = pro5.Id;
        msnew.Product2Model__c = 'test123';
        insert msnew;
 
        pro6.StorageStatusNo__c = 20;
        update pro6;
 
        }
 
        @isTest 
    static void CalAverageMonthSales3(){
 
        Product2 pro5 = new Product2(Name='name05',IsActive=true,Family='SP',
                Fixture_Model_No__c='n05',Serial_Lot_No__c='S/N tracing',
                Fixture_Model_No_T__c = 'n05',
                ProductCode_Ext__c='pc05',Manual_Entry__c=false,
                StorageStatus__c = '',StorageStatusNo__c = 22,
                WhiteSpace__c = false,
                M_BC_Stop_manufacure__c =Date.today());
        insert pro5;
 
        Product2 pro6 = new Product2();
        pro6.Name = 'name06';
        pro6.IsActive=true;
        pro6.Family='SP';
        pro6.Fixture_Model_No__c='n05';
        pro6.Serial_Lot_No__c='S/N tracing';
        pro6.Fixture_Model_No_T__c = 'n05';
        pro6.ProductCode_Ext__c='pc05';
        pro6.Manual_Entry__c=false;
        pro6.StorageStatus__c = '';
        pro6.StorageStatusNo__c = 22;
        pro6.WhiteSpace__c = false;
        //pro6.M_BC_Stop_manufacure__c = Date.today();
        pro6.SFDA_Status__c = '有効';
        pro6.Correspond_Code__c = pro5.Id;
        pro6.M_BC_Stop_manufacure__c =Date.today().addDays(1);
        insert pro6;
 
        ProductMonthlySales__c ms = new ProductMonthlySales__c();
        ms.MonthSales__c = 6;
        ms.CurrentDate__c = Date.today();
        ms.ProductM__c = pro6.Id;
        ms.Product2Model__c = 'test123';
        insert ms;
 
        ProductMonthlySales__c ms1 = new ProductMonthlySales__c();
        ms1.MonthSales__c = 6;
        ms1.CurrentDate__c = Date.today();
        ms1.ProductM__c = pro6.Id;
        ms1.Product2Model__c = 'test123';
        insert ms1;
 
        ProductMonthlySales__c ms2 = new ProductMonthlySales__c();
        ms2.MonthSales__c = 6;
        ms2.CurrentDate__c = Date.today();
        ms2.ProductM__c = pro6.Id;
        ms2.Product2Model__c = 'test123';
        insert ms2;
 
        ProductMonthlySales__c ms3 = new ProductMonthlySales__c();
        ms3.MonthSales__c = 6;
        ms3.CurrentDate__c = Date.today();
        ms3.ProductM__c = pro6.Id;
        ms3.Product2Model__c = 'test123';
        insert ms3;
 
        ProductMonthlySales__c ms4 = new ProductMonthlySales__c();
        ms4.MonthSales__c = 6;
        ms4.CurrentDate__c = Date.today();
        ms4.ProductM__c = pro6.Id;
        ms4.Product2Model__c = 'test123';
        insert ms4;
 
        ProductMonthlySales__c ms5 = new ProductMonthlySales__c();
        ms5.MonthSales__c = 6;
        ms5.CurrentDate__c = Date.today();
        ms5.ProductM__c = pro6.Id;
        ms5.Product2Model__c = 'test123';
        insert ms5;
 
        ProductMonthlySales__c ms6 = new ProductMonthlySales__c();
        ms6.MonthSales__c = 6;
        ms6.CurrentDate__c = Date.today();
        ms6.ProductM__c = pro6.Id;
        ms6.Product2Model__c = 'test123';
        insert ms6;
 
        ProductMonthlySales__c ms7 = new ProductMonthlySales__c();
        ms7.MonthSales__c = 6;
        ms7.CurrentDate__c = Date.today();
        ms7.ProductM__c = pro6.Id;
        ms7.Product2Model__c = 'test123';
        insert ms7;
 
        ProductMonthlySales__c ms8 = new ProductMonthlySales__c();
        ms8.MonthSales__c = 6;
        ms8.CurrentDate__c = Date.today();
        ms8.ProductM__c = pro6.Id;
        ms8.Product2Model__c = 'test123';
        insert ms8;
 
        ProductMonthlySales__c ms9 = new ProductMonthlySales__c();
        ms9.MonthSales__c = 6;
        ms9.CurrentDate__c = Date.today();
        ms9.ProductM__c = pro6.Id;
        ms9.Product2Model__c = 'test123';
        insert ms9;
 
        ProductMonthlySales__c msa = new ProductMonthlySales__c();
        msa.MonthSales__c = 6;
        msa.CurrentDate__c = Date.today();
        msa.ProductM__c = pro6.Id;
        msa.Product2Model__c = 'test123';
        insert msa;
 
        ProductMonthlySales__c msb = new ProductMonthlySales__c();
        msb.MonthSales__c = 6;
        msb.CurrentDate__c = Date.today();
        msb.ProductM__c = pro6.Id;
        msb.Product2Model__c = 'test123';
        insert msb;
 
        ProductMonthlySales__c msnew = new ProductMonthlySales__c();
        msnew.MonthSales__c = 6;
        msnew.CurrentDate__c = Date.today();
        msnew.ProductM__c = pro5.Id;
        msnew.Product2Model__c = 'test123';
        insert msnew;
 
        pro6.StorageStatusNo__c = 20;
        update pro6;
 
        }
 
    //SFDC停止预警  lt  20210922 add end
    
}