@isTest public with sharing class UpdateOPDStatusAndReasonBatchTest { @IsTest static void methodOne(){ //医院 记录类型 List rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; if (rectHp.size() == 0) { return; } //科室 记录类型 List 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 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 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 rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; if (rectHp.size() == 0) { return; } //科室 记录类型 List 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 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 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 rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP']; if (rectHp.size() == 0) { return; } //科室 记录类型 List 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 ls = new List(); ls.add(str); Database.executeBatch(new UpdateOPDStatusAndReasonBatch(ls),10); List opd = [select Id,ownerId,noReport_Reason__c,Status__c,UserEnable__c from OPDPlan__c where id =:ls]; System.assertEquals(opd[0].UserEnable__c, false); } }