高章伟
2023-03-03 d8dc84a3d56df839895f1c417a4d9cbee763d262
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
@isTest
private class FrameNumControllerTest {
    private static Id pricebookId = ControllerUtil.getStandardPricebook().Id;
    static testMethod void testMethod1() {
 
        List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        if (rectCo.size() == 0) {
            return;
        }
        List<RecordType> rectSct = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '戦略科室分類 呼吸科'];
        if (rectSct.size() == 0) {
            return;
        }
        List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 消化科'];
        if (rectDpt.size() == 0) {
            return;
        }
 
        Oly_TriggerHandler.bypass('NFM010UpsertStatuAchievements');
        ControllerUtil.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger2 = true;
        StaticParameter.EscapeOppandStaTrigger = true;
        StaticParameter.EscapeOpportunityBefUpdTrigger = true;
        StaticParameter.EscapeSyncOpportunityTrigger = true;
        StaticParameter.EscapeNFM007Trigger = true;
        StaticParameter.EscapeOpportunityHpDeptUpdTrigger = true;
        StaticParameter.EscapeSyncOpportunityTrigger = true;
 
        Oly_TriggerHandler.bypass('UserToContact');
        // テストデータ
        Account company = new Account();
        company.RecordTypeId = rectCo[0].Id;
        company.Name         = 'NFM007TestCompany';
        insert company;
 
        Account section = new Account();
        section.RecordTypeId = rectSct[0].Id;
        section.Name         = '*';
        section.Department_Class_Label__c = '消化科';
        section.ParentId                  = company.Id;
        section.Hospital_Department_Class__c = company.Id;
        section.AgentCode_Ext__c = '9999900';
        insert section;
 
        Account depart = new Account();
        depart.RecordTypeId = rectDpt[0].Id;
        depart.Name         = '*';
        depart.Department_Name__c  = 'NFM007TestDepart';
        depart.ParentId            = section.Id;
        depart.Department_Class__c = section.Id;
        depart.Hospital__c         = company.Id;
        depart.AgentCode_Ext__c = '99999001';
        insert depart;
 
        Opportunity opp = new Opportunity();
        opp.AccountId           = depart.Id;
        opp.Department_Class__c = section.Id;
        opp.Hospital__c         = company.Id;
        opp.SAP_Send_OK__c      = false;
        opp.CurrencyIsoCode = 'CNY';
        opp.Name                = 'GZ-SP-NFM007_1';
        opp.Trade__c            = '内貿';
        opp.StageName           = '引合';
        opp.CloseDate           = date.newinstance(2023, 11, 30);
        opp.Stock_apply_status__c = '申请中';
        opp.IsNextMonthOfVisit__c = false;
        opp.Pricebook2Id = pricebookId;
        opp.ET_SP_Consumption__c = false;
        opp.Opp_order_Type__c = '';
        opp.ThisPhase_Ship_Forecast__c  = false;
        opp.Equipment_Order_Flg__c  = false;
        opp.old_Oppo_No__c = '';
        opp.If_Account_Change__c  = false;
        // opp.ForecastAccuracyObject__c = true;
 
        // 待解决设置值后查询时为空的问题(batch中测试程序会跳过该条件)
        opp.OCM_man_province_cus_txt__c = '北京';
        opp.OCM_man_province_txt__c = '北京';
        // opp.SalesdepartmentForecast__c = '1.华北';
        insert opp;
        Statu_Achievements__c sanObj = new Statu_Achievements__c();
        sanObj.Name = '123456';
        sanObj.Opportunity__c = opp.Id;
        insert sanObj;
        eSignForm__c enObj = new eSignForm__c();
        enObj.Name = 'testeSignForm__c';
        enObj.Statu_Achievements__c = sanObj.Id;
        insert enObj;
        FileAddress__c  nObj2 = new FileAddress__c();
        // nObj2.Name = 'test1';
        nObj2.FileName__c = 'test1';
        nObj2.ViewLink__c = 'https://www.baidu.com';
        nObj2.DownloadLink__c = 'https://www.baidu.com';
        insert nObj2;
        FileAddress__c  nObj2_1 = new FileAddress__c();
        // nObj2.Name = 'test1';
        nObj2_1.FileName__c = 'test2';
        nObj2_1.DownloadLink__c = 'https://www.baidu.com';
        nObj2_1.ViewLink__c = 'https://www.baidu.com';
        insert nObj2_1;
        FrameNumManage__c nObj1 = new FrameNumManage__c();
        nObj1.Name = 'test1';
        nObj1.ManagementCode__c = '22R';
        nObj1.ApplyList__c = 'test1';
        nObj1.SerialNumber__c = 'ABCDEFG';
        nObj1.Num__c = 1;
        nObj1.signInForm__c = enObj.Id;
        nObj1.ApplyList_Select__c = nObj2.Id;
        nObj1.InspectionCard_Select__c = nObj2.Id;
        nObj1.Material__c = 'test1';
        nObj1.MaterialDepict__c = 'test1';
        insert nObj1;
        FrameNumManage__c nObj1_1 = new FrameNumManage__c();
        nObj1_1.Name = 'test1';
        nObj1_1.ManagementCode__c = '22R1';
        nObj1_1.ApplyList__c = 'test11';
        nObj1_1.InspectionCard__c = '不出证';
        nObj1_1.SerialNumber__c = 'ABCDEFG1';
        nObj1_1.SerialNumberS__c = 'ABCDEFG1';
        nObj1_1.Num__c = 1;
        nObj1_1.signInForm__c = enObj.Id;
        nObj1_1.ApplyList_Select__c = nObj2.Id;
        // nObj1_1.InspectionCard_Select__c = nObj2.Id;
        nObj1_1.Material__c = 'test1';
        nObj1_1.MaterialDepict__c = 'test1';
        insert nObj1_1;
        FrameNumManage__c nObj1_2 = new FrameNumManage__c();
        nObj1_2.Name = 'test1';
        nObj1_2.ManagementCode__c = '22R2';
        nObj1_2.ApplyList__c = 'test1';
        nObj1_2.SerialNumber__c = 'ABCDEFG2';
        nObj1_2.SerialNumberS__c = 'ABCDEFG2';
        nObj1_2.Num__c = 1;
        nObj1_2.signInForm__c = enObj.Id;
        nObj1_2.ApplyList_Select__c = nObj2.Id;
        nObj1_2.InspectionCard_Select__c = nObj2.Id;
        nObj1_2.Material__c = 'test1';
        nObj1_2.MaterialDepict__c = 'test1';
        insert nObj1_2;
        FrameNumManage__c nObj1_3 = new FrameNumManage__c();
        nObj1_3.Name = 'test1';
        nObj1_3.ManagementCode__c = '22R23';
        nObj1_3.InspectionCard__c = '不出证';
        nObj1_3.ApplyList__c = '';
        nObj1_3.SerialNumber__c = 'ABCDEFG2';
        nObj1_3.SerialNumberS__c = 'ABCDEFG23';
        nObj1_3.Num__c = 1;
        nObj1_3.signInForm__c = enObj.Id;
        nObj1_2.ApplyList_Select__c = nObj2_1.Id;
        // nObj1_2.InspectionCard_Select__c = nObj2.Id;
        nObj1_3.Material__c = 'test1';
        nObj1_3.MaterialDepict__c = 'test1';
        insert nObj1_3;
        FrameNumManage__c nObj1_4 = new FrameNumManage__c();
        nObj1_4.Name = 'test1';
        nObj1_4.ManagementCode__c = '22R24';
        nObj1_4.ApplyList__c = 'test1';
        nObj1_4.SerialNumber__c = 'ABCDEFG2';
        nObj1_4.SerialNumberS__c = 'ABCDEFG24';
        nObj1_4.Num__c = 1;
        nObj1_4.signInForm__c = enObj.Id;
        // nObj1_2.ApplyList_Select__c = nObj2.Id;
        // nObj1_2.InspectionCard_Select__c = nObj2.Id;
        nObj1_4.Material__c = 'test1';
        nObj1_4.MaterialDepict__c = 'test1';
        insert nObj1_4;
        FrameNumManage__c nObj1_5 = new FrameNumManage__c();
        nObj1_5.Name = 'test1';
        nObj1_5.ManagementCode__c = '22R25';
        nObj1_5.ApplyList__c = 'test1';
        nObj1_5.SerialNumber__c = 'ABCDEFG2';
        nObj1_5.SerialNumberS__c = 'ABCDEFG25';
        nObj1_5.Num__c = 1;
        nObj1_5.signInForm__c = enObj.Id;
        nObj1_5.ApplyList_Select__c = nObj2.Id;
        nObj1_5.InspectionCard_Select__c = nObj2.Id;
        nObj1_5.Material__c = 'test1';
        nObj1_5.MaterialDepict__c = 'test1';
        insert nObj1_5;
        PageReference page = new PageReference('/' + enObj.Id);
        System.Test.setCurrentPage(page);
        FrameNumController con1 = new FrameNumController(new ApexPages.StandardController(enObj));
        con1.init();
    }
    static testMethod void testMethod2() {
         List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        if (rectCo.size() == 0) {
            return;
        }
        List<RecordType> rectSct = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '戦略科室分類 呼吸科'];
        if (rectSct.size() == 0) {
            return;
        }
        List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 消化科'];
        if (rectDpt.size() == 0) {
            return;
        }
 
        Oly_TriggerHandler.bypass('NFM010UpsertStatuAchievements');
        ControllerUtil.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger2 = true;
        StaticParameter.EscapeOppandStaTrigger = true;
        StaticParameter.EscapeOpportunityBefUpdTrigger = true;
        StaticParameter.EscapeSyncOpportunityTrigger = true;
        StaticParameter.EscapeNFM007Trigger = true;
        StaticParameter.EscapeOpportunityHpDeptUpdTrigger = true;
        StaticParameter.EscapeSyncOpportunityTrigger = true;
 
        Oly_TriggerHandler.bypass('UserToContact');
        // テストデータ
        Account company = new Account();
        company.RecordTypeId = rectCo[0].Id;
        company.Name         = 'NFM007TestCompany';
        insert company;
 
        Account section = new Account();
        section.RecordTypeId = rectSct[0].Id;
        section.Name         = '*';
        section.Department_Class_Label__c = '消化科';
        section.ParentId                  = company.Id;
        section.Hospital_Department_Class__c = company.Id;
        section.AgentCode_Ext__c = '9999900';
        insert section;
 
        Account depart = new Account();
        depart.RecordTypeId = rectDpt[0].Id;
        depart.Name         = '*';
        depart.Department_Name__c  = 'NFM007TestDepart';
        depart.ParentId            = section.Id;
        depart.Department_Class__c = section.Id;
        depart.Hospital__c         = company.Id;
        depart.AgentCode_Ext__c = '99999001';
        insert depart;
 
        Opportunity opp = new Opportunity();
        opp.AccountId           = depart.Id;
        opp.Department_Class__c = section.Id;
        opp.Hospital__c         = company.Id;
        opp.SAP_Send_OK__c      = false;
        opp.CurrencyIsoCode = 'CNY';
        opp.Name                = 'GZ-SP-NFM007_1';
        opp.Trade__c            = '内貿';
        opp.StageName           = '引合';
        opp.CloseDate           = date.newinstance(2023, 11, 30);
        opp.Stock_apply_status__c = '申请中';
        opp.IsNextMonthOfVisit__c = false;
        opp.Pricebook2Id = pricebookId;
        opp.ET_SP_Consumption__c = false;
        opp.Opp_order_Type__c = '';
        opp.ThisPhase_Ship_Forecast__c  = false;
        opp.Equipment_Order_Flg__c  = false;
        opp.old_Oppo_No__c = '';
        opp.If_Account_Change__c  = false;
        // opp.ForecastAccuracyObject__c = true;
 
        // 待解决设置值后查询时为空的问题(batch中测试程序会跳过该条件)
        opp.OCM_man_province_cus_txt__c = '北京';
        opp.OCM_man_province_txt__c = '北京';
        // opp.SalesdepartmentForecast__c = '1.华北';
        insert opp;
        Statu_Achievements__c sanObj = new Statu_Achievements__c();
        sanObj.Name = '123456';
        sanObj.Opportunity__c = opp.Id;
        insert sanObj;
        eSignForm__c enObj = new eSignForm__c();
        enObj.Name = 'testeSignForm__c';
        enObj.Statu_Achievements__c = sanObj.Id;
        insert enObj;
        FileAddress__c  nObj2 = new FileAddress__c();
        // nObj2.Name = 'test1';
        nObj2.FileName__c = 'test1';
        nObj2.ViewLink__c = '';
        insert nObj2;
        FileAddress__c  nObj2_1 = new FileAddress__c();
        // nObj2.Name = 'test1';
        nObj2_1.FileName__c = 'test2';
        nObj2_1.ViewLink__c = '';
        insert nObj2_1;
        FrameNumManage__c nObj1 = new FrameNumManage__c();
        nObj1.Name = 'test1';
        nObj1.ManagementCode__c = '22R';
        nObj1.InspectionCard__c = '不出证';
        nObj1.ApplyList__c = 'test1';
        nObj1.SerialNumber__c = 'ABCDEFG';
        nObj1.signInForm__c = enObj.Id;
        nObj1.Num__c = 1;
        // nObj1.ApplyList_Select__c = nObj2.Id;
        // nObj1.InspectionCard_Select__c = nObj2.Id;
        nObj1.Material__c = 'test1';
        nObj1.MaterialDepict__c = 'test1';
        insert nObj1;
 
        PageReference page = new PageReference('/' + enObj.Id);
        System.Test.setCurrentPage(page);
        FrameNumController con1 = new FrameNumController(new ApexPages.StandardController(enObj));
        con1.init();
    }
    static testMethod void testMethod3() {
         List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        if (rectCo.size() == 0) {
            return;
        }
        List<RecordType> rectSct = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '戦略科室分類 呼吸科'];
        if (rectSct.size() == 0) {
            return;
        }
        List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 消化科'];
        if (rectDpt.size() == 0) {
            return;
        }
 
        Oly_TriggerHandler.bypass('NFM010UpsertStatuAchievements');
        ControllerUtil.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger2 = true;
        StaticParameter.EscapeOppandStaTrigger = true;
        StaticParameter.EscapeOpportunityBefUpdTrigger = true;
        StaticParameter.EscapeSyncOpportunityTrigger = true;
        StaticParameter.EscapeNFM007Trigger = true;
        StaticParameter.EscapeOpportunityHpDeptUpdTrigger = true;
        StaticParameter.EscapeSyncOpportunityTrigger = true;
 
        Oly_TriggerHandler.bypass('UserToContact');
        // テストデータ
        Account company = new Account();
        company.RecordTypeId = rectCo[0].Id;
        company.Name         = 'NFM007TestCompany';
        insert company;
 
        Account section = new Account();
        section.RecordTypeId = rectSct[0].Id;
        section.Name         = '*';
        section.Department_Class_Label__c = '消化科';
        section.ParentId                  = company.Id;
        section.Hospital_Department_Class__c = company.Id;
        section.AgentCode_Ext__c = '9999900';
        insert section;
 
        Account depart = new Account();
        depart.RecordTypeId = rectDpt[0].Id;
        depart.Name         = '*';
        depart.Department_Name__c  = 'NFM007TestDepart';
        depart.ParentId            = section.Id;
        depart.Department_Class__c = section.Id;
        depart.Hospital__c         = company.Id;
        depart.AgentCode_Ext__c = '99999001';
        insert depart;
 
        Opportunity opp = new Opportunity();
        opp.AccountId           = depart.Id;
        opp.Department_Class__c = section.Id;
        opp.Hospital__c         = company.Id;
        opp.SAP_Send_OK__c      = false;
        opp.CurrencyIsoCode = 'CNY';
        opp.Name                = 'GZ-SP-NFM007_1';
        opp.Trade__c            = '内貿';
        opp.StageName           = '引合';
        opp.CloseDate           = date.newinstance(2023, 11, 30);
        opp.Stock_apply_status__c = '申请中';
        opp.IsNextMonthOfVisit__c = false;
        opp.Pricebook2Id = pricebookId;
        opp.ET_SP_Consumption__c = false;
        opp.Opp_order_Type__c = '';
        opp.ThisPhase_Ship_Forecast__c  = false;
        opp.Equipment_Order_Flg__c  = false;
        opp.old_Oppo_No__c = '';
        opp.If_Account_Change__c  = false;
        // opp.ForecastAccuracyObject__c = true;
 
        // 待解决设置值后查询时为空的问题(batch中测试程序会跳过该条件)
        opp.OCM_man_province_cus_txt__c = '北京';
        opp.OCM_man_province_txt__c = '北京';
        // opp.SalesdepartmentForecast__c = '1.华北';
        insert opp;
        Statu_Achievements__c sanObj = new Statu_Achievements__c();
        sanObj.Name = '123456';
        sanObj.Opportunity__c = opp.Id;
        insert sanObj;
        eSignForm__c enObj = new eSignForm__c();
        enObj.Name = 'testeSignForm__c';
        enObj.Statu_Achievements__c = sanObj.Id;
        insert enObj;
        FileAddress__c  nObj2 = new FileAddress__c();
        // nObj2.Name = 'test1';
        nObj2.FileName__c = 'test1';
        nObj2.ViewLink__c = '';
        insert nObj2;
        FileAddress__c  nObj2_1 = new FileAddress__c();
        // nObj2.Name = 'test1';
        nObj2_1.FileName__c = 'test2';
        nObj2_1.ViewLink__c = '';
        insert nObj2_1;
        FrameNumManage__c nObj1 = new FrameNumManage__c();
        nObj1.Name = 'test1';
        nObj1.ManagementCode__c = '22R';
        nObj1.InspectionCard__c = '不出证';
        nObj1.ApplyList__c = 'test1';
        nObj1.SerialNumber__c = 'ABCDEFG';
        nObj1.signInForm__c = enObj.Id;
        nObj1.Num__c = 1;
        nObj1.ApplyList_Select__c = nObj2.Id;
        nObj1.InspectionCard_Select__c = nObj2.Id;
        nObj1.Material__c = 'test1';
        nObj1.MaterialDepict__c = 'test1';
        insert nObj1;
 
        PageReference page = new PageReference('/' + enObj.Id);
        System.Test.setCurrentPage(page);
        FrameNumController con1 = new FrameNumController(new ApexPages.StandardController(enObj));
        con1.init();
    }
}