高章伟
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
@isTest
public with sharing class UpdateOPDStatusAndReasonBatchTest {
    @IsTest
    static void methodOne(){
         //医院 记录类型
      List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'];
      if (rectHp.size() == 0) {
          return;
      }
      //科室 记录类型
      List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI'];
      if (rectDpt.size() == 0) {
          return;
      }
      
      //简档
      Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin];
 
      //用户
      User hpowner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id);
      insert hpowner;
 
      User hpowner2 = new User(Test_staff__c = true, LastName = 'hp1', FirstName = 'owner1', Alias = 'hp1', Work_Location__c = '北京', CommunityNickname = 'hpOwner1', Email = 'olympus_hpowner1@sunbridge.com', Username = 'olympus_hpowner1@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = '00e10000000xnp2');
      insert hpowner2;
      
 
      // User us = [select ID,IsActive from User where Id = :hpowner.Id];
      // System.assertEquals(null, us);
 
      //医院
      Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id);
      hp.FSE_GI_Main_Leader__c = hpOwner.Id;
      insert hp;
 
      //战略科室
      Account dc = [select Id, Name, RecordType_DeveloperName__c, Account2__c from Account where ParentId = :hp.Id and RecordType_DeveloperName__c = 'Department_Class_GI'];
      //科室
      Account dpt = new Account(RecordTypeId = rectDpt[0].Id);
      dpt.Name         = '*';
      dpt.Department_Name__c  = 'TestDepart';
      dpt.ParentId            = dc.Id;
      dpt.Department_Class__c = dc.Id;
      dpt.Hospital__c         = hp.Id;
      insert dpt;
      //科室1
      Account dpt1 = new Account(RecordTypeId = rectDpt[0].Id);
      dpt1.Name         = '123';
      dpt1.Department_Name__c  = 'TestDepart1';
      dpt1.ParentId            = dc.Id;
      dpt1.Department_Class__c = dc.Id;
      dpt1.Hospital__c         = hp.Id;
      insert dpt1;
 
      OPDPlan__c oPDPlan4 = new OPDPlan__c();
      oPDPlan4.ownerId = hpowner2.id;
      oPDPlan4.Name = '20210916';
      oPDPlan4.OPDType__c = '事件';
      oPDPlan4.Status__c = '完毕未报告';
      oPDPlan4.RentalReson__c = 'OPD';
      oPDPlan4.Account_Laboratory__c =dpt.Id;//科室
      oPDPlan4.OPDPlan_ImplementDate__c = Date.today().adddays(30);//OPD计划实施日期
      oPDPlan4.NoOpp_Reason__c = 'HCP对应';//无询价申请理由
      oPDPlan4.if_OPDTarget__c=1;//是否OPD目标借用
      oPDPlan4.if_HaveSalestarget__c =1;//是否营业目标借用
      oPDPlan4.Cnt_OPD_ThisYear__c=1;//    本期OPD次数
      oPDPlan4.Cnt_OPD_LastYear__c=1;//
      oPDPlan4.if_HaveOpportunity__c=1;
      oPDPlan4.if_HaveEquipment__c =1;
      oPDPlan4.Cnt_Rentals__c =1;
      oPDPlan4.PlanProdDetail__c ='CV-290*4; GI-290镜子*1; GI-290镜子CF*1;';
      insert oPDPlan4;
 
      
 
      system.runAs(new User(Id = Userinfo.getUserId())){
        hpowner2.IsActive = false;
        update hpowner2;
      }
 
      //List<OPDPLan__C> opd = [select Id,noReport_Reason__c,Status__c from OPDPlan__c where Status__c in('完毕','完毕未报告') and UserEnable__c = false];
      //System.assertEquals(1 , opd.size());
 
      //string str =(string) hpowner.Id;
 
      Database.executeBatch(new UpdateOPDStatusAndReasonBatch(),10);  
      List<OPDPLan__C> opd = [select Id,ownerId,noReport_Reason__c,Status__c,UserEnable__c from OPDPlan__c];
      System.assertEquals(opd[0].UserEnable__c, false);
    }
   @IsTest
   static void methodTwo(){
       //医院 记录类型
       List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'];
       if (rectHp.size() == 0) {
           return;
       }
       //科室 记录类型
       List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI'];
       if (rectDpt.size() == 0) {
           return;
       }
       
       //简档
       Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin];
 
       //用户
       User hpowner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id);
       insert hpowner;
 
       User hpowner2 = new User(Test_staff__c = true, LastName = 'hp1', FirstName = 'owner1', Alias = 'hp1', Work_Location__c = '北京', CommunityNickname = 'hpOwner1', Email = 'olympus_hpowner1@sunbridge.com', Username = 'olympus_hpowner1@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = '00e10000000xnp2');
       insert hpowner2;
       
 
       // User us = [select ID,IsActive from User where Id = :hpowner.Id];
       // System.assertEquals(null, us);
 
       //医院
       Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id);
       hp.FSE_GI_Main_Leader__c = hpOwner.Id;
       insert hp;
 
       //战略科室
       Account dc = [select Id, Name, RecordType_DeveloperName__c, Account2__c from Account where ParentId = :hp.Id and RecordType_DeveloperName__c = 'Department_Class_GI'];
       //科室
       Account dpt = new Account(RecordTypeId = rectDpt[0].Id);
       dpt.Name         = '*';
       dpt.Department_Name__c  = 'TestDepart';
       dpt.ParentId            = dc.Id;
       dpt.Department_Class__c = dc.Id;
       dpt.Hospital__c         = hp.Id;
       insert dpt;
       //科室1
       Account dpt1 = new Account(RecordTypeId = rectDpt[0].Id);
       dpt1.Name         = '123';
       dpt1.Department_Name__c  = 'TestDepart1';
       dpt1.ParentId            = dc.Id;
       dpt1.Department_Class__c = dc.Id;
       dpt1.Hospital__c         = hp.Id;
       insert dpt1;
 
       Contact contact2 = new Contact();
       contact2.AccountId = dpt.Id;
       contact2.FirstName = '責任者';
       contact2.LastName = 'test1经销商';
       insert contact2;
 
               // 产品
               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);
       insert pro5;
 
       //备品借出申请
       Rental_Apply__c raObj = new Rental_Apply__c();
       raObj.Name = 'testra';
       raObj.Product_category__c = 'GI';
       raObj.Demo_purpose1__c = '产品试用';
       raObj.demo_purpose2__c = FixtureUtil.raDemo_purpose2MAP.get('shiyongwuxunjia');
       raObj.direct_send__c = '医疗机构';
       raObj.Loaner_received_staff__c = '王五';
       raObj.Loaner_received_staff_phone__c = '110';
       raObj.direct_shippment_address__c = '北京市';
       raObj.Hospital__c = hp.Id;
       raObj.Strategic_dept__c = dc.Id;
       raObj.Account__c = dpt.Id;
       raObj.Request_shipping_day__c = Date.toDay();  // 希望到货日
       raObj.Hope_Lonaer_date_Num__c = 1;  // 希望借用天数
       // 预定归还日自动生成 预定归还日=(希望到货日+希望借用天数)-1
       // raObj.Request_return_day__c = Date.toDay();  // 预定归还日
       // B.OLY_OCM-669 入力规则: 希望借用天数不能为空
       raObj.Phone_number__c = '1234567890';
       raObj.Loaner_medical_Staff__c = contact2.Id;
       insert raObj;
 
       // 保有设备C (只有附属品 个体管理)
       Asset assetC1 = new Asset(Asset_Owner__c = 'Olympus');
       assetC1.RecordTypeId = System.Label.Asset_RecordType;
       assetC1.SerialNumber = 'assetC1';
       assetC1.Name = 'assetC1';
       assetC1.AccountId = dpt.Id;
       assetC1.Department_Class__c = dc.Id;
       assetC1.Hospital__c = hp.Id;
       assetC1.Product2Id = pro5.Id;
       assetC1.Quantity = 1;
       assetC1.Status = '有库存';
       assetC1.Manage_type__c = '个体管理';
       assetC1.Internal_asset_location__c = '北京 备品中心';
       assetC1.Loaner_accsessary__c = true;
       assetC1.Delete_Flag__c = false;
       assetC1.Freeze_sign__c = false;
       assetC1.Out_of_wh__c = 0;
       // 保有设备
       Asset asset = new Asset(Asset_Owner__c = 'Olympus');
       asset.RecordTypeId = System.Label.Asset_RecordType;
       asset.SerialNumber = 'asset';
       asset.Name = 'asset';
       asset.AccountId = dpt.Id;
       asset.Department_Class__c = dc.Id;
       asset.Hospital__c = hp.Id;
       asset.Product2Id = pro5.Id;
       asset.Quantity = 1;
       asset.Status = '有库存';
       asset.Manage_type__c = '个体管理';
       asset.Internal_asset_location__c = '北京 备品中心';
       asset.Loaner_accsessary__c = true;
       asset.Delete_Flag__c = false;
       asset.Freeze_sign__c = false;
       asset.Out_of_wh__c = 0;
       insert new Asset[] {assetC1, asset};
 
       // 备品配套(只有附属品)
       Fixture_Set__c fsObjC1 = new Fixture_Set__c();
       fsObjC1.Name = 'setC1';
       fsObjC1.Fixture_Set_Body_Model_No__c = 'modelNoC1';
       fsObjC1.Loaner_name__c = 'nameC1';
       insert fsObjC1;
 
       // 备品配套明细(只有附属品)
       Fixture_Set_Detail__c fsdObjC1 = new Fixture_Set_Detail__c();
       fsdObjC1.Name = 'detailAccessory';
       fsdObjC1.Name_CHN_Created__c = 'detailAccessoryName';
       fsdObjC1.Product2__c = pro5.Id;
       fsdObjC1.Fixture_Set__c = fsObjC1.Id;
       fsdObjC1.Is_Body__c = false;
       fsdObjC1.Is_Optional__c = true;
       fsdObjC1.UniqueKey__c = fsObjC1.Id + ':' + pro5.Id;
       fsdObjC1.SortInt__c = 1;
       insert fsdObjC1;
 
       // 借出备品配套一览
       Rental_Apply_Equipment_Set__c raesObjC1 = new Rental_Apply_Equipment_Set__c();
       raesObjC1.Rental_Apply__c = raObj.Id;
       raesObjC1.Fixture_Set__c = fsObjC1.Id;
       raesObjC1.Cancel_Select__c = false;
       raesObjC1.Shipment_request_time__c = Date.toDay();
       raesObjC1.Rental_Start_Date__c = Date.toDay();
       raesObjC1.Rental_End_Date__c = Date.toDay();
       raesObjC1.IndexFromUniqueKey__c = 1;
       raesObjC1.UniqueKey__c = '1:'+ fsObjC1.Id + ':1';
       insert raesObjC1;
 
       // 借出备品配套一览明细
       Rental_Apply_Equipment_Set_Detail__c raesdObjC1 = new Rental_Apply_Equipment_Set_Detail__c();
       raesdObjC1.Rental_Apply__c = raObj.Id;
       raesdObjC1.Fixture_Set_Detail__c = fsdObjC1.Id;
       raesdObjC1.Rental_Num__c = 1;
       raesdObjC1.Queue_Number__c = null;
       raesdObjC1.Is_Body__c = false;
       raesdObjC1.Rental_Apply_Equipment_Set__c = raesObjC1.Id;
       raesdObjC1.Asset__c = assetC1.Id;
       raesdObjC1.IndexFromUniqueKey__c = 1;
       raesdObjC1.UniqueKey__c = '1:'+ raesObjC1.Id + ':' + fsdObjC1.Id + ':1';
       raesdObjC1.Salesdepartment_before__c = '0.备品中心';
       raesdObjC1.Internal_asset_location_before__c = '北京 备品中心';
       raesdObjC1.Product_category_text__c = 'GI';
       raesdObjC1.Equipment_Type_text__c = '产品试用';
       raesdObjC1.Cancel_Select__c = true;
       raesdObjC1.Cancel_Reason__c = '主动取消';
       insert raesdObjC1;
 
       OPDPlan__c oPDPlan4 = new OPDPlan__c();
       oPDPlan4.ownerId = hpowner2.id;
       oPDPlan4.Name = '20210916';
       oPDPlan4.OPDType__c = '事件';
       oPDPlan4.Status__c = '完毕未报告';
       oPDPlan4.RentalReson__c = 'OPD';
       oPDPlan4.Account_Laboratory__c =dpt.Id;//科室
       oPDPlan4.OPDPlan_ImplementDate__c = Date.today().adddays(30);//OPD计划实施日期
       oPDPlan4.NoOpp_Reason__c = 'HCP对应';//无询价申请理由
       oPDPlan4.if_OPDTarget__c=1;//是否OPD目标借用
       oPDPlan4.if_HaveSalestarget__c =1;//是否营业目标借用
       oPDPlan4.Cnt_OPD_ThisYear__c=1;//    本期OPD次数
       oPDPlan4.Cnt_OPD_LastYear__c=1;//
       oPDPlan4.if_HaveOpportunity__c=1;
       oPDPlan4.if_HaveEquipment__c =1;
       oPDPlan4.Cnt_Rentals__c =1;
       oPDPlan4.PlanProdDetail__c ='CV-290*4; GI-290镜子*1; GI-290镜子CF*1;';
       oPDPlan4.Rental_Apply1__c = raObj.Id;
       insert oPDPlan4;
 
       
 
       system.runAs(new User(Id = Userinfo.getUserId())){
         hpowner2.IsActive = false;
         update hpowner2;
       }
 
       //List<OPDPLan__C> opd = [select Id,noReport_Reason__c,Status__c from OPDPlan__c where Status__c in('完毕','完毕未报告') and UserEnable__c = false];
       
       string str = (string)oPDPlan4.Id;
       
       Database.executeBatch(new UpdateOPDStatusAndReasonBatch(str),10); 
       List<OPDPLan__C> opd = [select Id,ownerId,noReport_Reason__c,Status__c,UserEnable__c from OPDPlan__c where id =:str];
       System.assertEquals(opd[0].UserEnable__c, false);
   }
  @IsTest
  static void methodThree(){
     //医院 记录类型
     List<RecordType> rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'];
     if (rectHp.size() == 0) {
         return;
     }
     //科室 记录类型
     List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI'];
     if (rectDpt.size() == 0) {
         return;
     }
     
     //简档
     Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin];
 
     //用户
     User hpowner = new User(Test_staff__c = true, LastName = 'hp', FirstName = 'owner', Alias = 'hp', Work_Location__c = '北京', CommunityNickname = 'hpOwner', Email = 'olympus_hpowner@sunbridge.com', Username = 'olympus_hpowner@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = p.id);
     insert hpowner;
 
     User hpowner2 = new User(Test_staff__c = true, LastName = 'hp1', FirstName = 'owner1', Alias = 'hp1', Work_Location__c = '北京', CommunityNickname = 'hpOwner1', Email = 'olympus_hpowner1@sunbridge.com', Username = 'olympus_hpowner1@sunbridge.com', IsActive = true, EmailEncodingKey = 'ISO-2022-JP', TimeZoneSidKey = 'Asia/Tokyo', LocaleSidKey = 'ja_JP', LanguageLocaleKey = 'ja', ProfileId = '00e10000000xnp2');
     insert hpowner2;
     
     //医院
     Account hp = new Account(RecordTypeId = rectHp[0].Id, Name = 'hp', OwnerId = hpOwner.Id);
     hp.FSE_GI_Main_Leader__c = hpOwner.Id;
     insert hp;
 
     //战略科室
     Account dc = [select Id, Name, RecordType_DeveloperName__c, Account2__c from Account where ParentId = :hp.Id and RecordType_DeveloperName__c = 'Department_Class_GI'];
     //科室
     Account dpt = new Account(RecordTypeId = rectDpt[0].Id);
     dpt.Name         = '*';
     dpt.Department_Name__c  = 'TestDepart';
     dpt.ParentId            = dc.Id;
     dpt.Department_Class__c = dc.Id;
     dpt.Hospital__c         = hp.Id;
     insert dpt;
     //科室1
     Account dpt1 = new Account(RecordTypeId = rectDpt[0].Id);
     dpt1.Name         = '123';
     dpt1.Department_Name__c  = 'TestDepart1';
     dpt1.ParentId            = dc.Id;
     dpt1.Department_Class__c = dc.Id;
     dpt1.Hospital__c         = hp.Id;
     insert dpt1;
 
     OPDPlan__c oPDPlan4 = new OPDPlan__c();
     oPDPlan4.ownerId = hpowner2.id;
     oPDPlan4.Name = '20210916';
     oPDPlan4.OPDType__c = '事件';
     oPDPlan4.Status__c = '完毕未报告';
     oPDPlan4.RentalReson__c = 'OPD';
     oPDPlan4.Account_Laboratory__c =dpt.Id;//科室
     oPDPlan4.OPDPlan_ImplementDate__c = Date.today().adddays(30);//OPD计划实施日期
     oPDPlan4.NoOpp_Reason__c = 'HCP对应';//无询价申请理由
     oPDPlan4.if_OPDTarget__c=1;//是否OPD目标借用
     oPDPlan4.if_HaveSalestarget__c =1;//是否营业目标借用
     oPDPlan4.Cnt_OPD_ThisYear__c=1;//    本期OPD次数
     oPDPlan4.Cnt_OPD_LastYear__c=1;//
     oPDPlan4.if_HaveOpportunity__c=1;
     oPDPlan4.if_HaveEquipment__c =1;
     oPDPlan4.Cnt_Rentals__c =1;
     oPDPlan4.PlanProdDetail__c ='CV-290*4; GI-290镜子*1; GI-290镜子CF*1;';
     insert oPDPlan4;
 
     
 
     system.runAs(new User(Id = Userinfo.getUserId())){
       hpowner2.IsActive = false;
       update hpowner2;
     }
 
     
    
     string str = (string)oPDPlan4.Id;
     List<String> ls = new List<String>();
     ls.add(str);
     
     Database.executeBatch(new UpdateOPDStatusAndReasonBatch(ls),10); 
     List<OPDPLan__C> opd = [select Id,ownerId,noReport_Reason__c,Status__c,UserEnable__c from OPDPlan__c where id =:ls];
     System.assertEquals(opd[0].UserEnable__c, false);
    
 
     
  }
}