/**
|
* @Author lijinhuan
|
* @DateTime 2022-12-20T10:02:12+0800
|
*/
|
@isTest
|
private class MergeObjectBatchTest {
|
|
static testMethod void testMethod1() {
|
StaticParameter.EscapeNFM001AgencyContractTrigger = true;
|
StaticParameter.EscapeNFM001Trigger = true;
|
Oly_TriggerHandler.bypass(ContactTriggerHandler.class.getName());
|
Oly_TriggerHandler.bypass(AgencyHospitalHandler.class.getName());
|
|
// 省
|
Address_Level__c al = new Address_Level__c();
|
al.Name = '東京';
|
al.Level1_Code__c = 'CN-99';
|
al.Level1_Sys_No__c = '999999';
|
insert al;
|
// 市
|
Address_Level2__c al2 = new Address_Level2__c();
|
al2.Level1_Code__c = 'CN-99';
|
al2.Level1_Sys_No__c = '999999';
|
al2.Level1_Name__c = '東京';
|
al2.Name = '渋谷区';
|
al2.Level2_Code__c = 'CN-9999';
|
al2.Level2_Sys_No__c = '9999999';
|
al2.Address_Level__c = al.id;
|
insert al2;
|
|
// 病院を作る
|
Account hospital = new Account();
|
hospital.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'].id;
|
hospital.Name = 'test hospital';
|
hospital.Is_Active__c = '有効';
|
hospital.Attribute_Type__c = '卫生部';
|
hospital.Speciality_Type__c = '综合医院';
|
hospital.Grade__c = '一级';
|
hospital.OCM_Category__c = 'SLTV';
|
hospital.Is_Medical__c = '医疗机构';
|
hospital.State_Master__c = al.id;
|
hospital.City_Master__c = al2.id;
|
hospital.Town__c = '东京';
|
insert hospital;
|
|
StaticParameter.EscapeAccountTrigger = true;
|
// 戦略科室を得る
|
Account[] strategicDep = [SELECT ID, Name FROM Account WHERE parentId = :hospital.Id AND recordType.DeveloperName = 'Department_Class_OTH'];
|
// 診療科を作る
|
Account dep = new Account();
|
dep.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_OTH'].id;
|
dep.Name = 'test dep1';
|
dep.AgentCode_Ext__c = System.Label.Account_Asset_FJZ;
|
dep.ParentId = strategicDep[0].Id;
|
dep.Department_Class__c = strategicDep[0].Id;
|
dep.Hospital__c = hospital.Id;
|
|
Account dep1 = new Account();
|
dep1.recordtypeId = dep.recordtypeId;
|
dep1.Name = 'test dep1';
|
dep1.AgentCode_Ext__c = System.Label.Account_Asset;
|
dep1.ParentId = strategicDep[0].Id;
|
dep1.Department_Class__c = strategicDep[0].Id;
|
dep1.Hospital__c = hospital.Id;
|
|
insert new Account[]{dep, dep1};
|
|
Contact contact1 = new Contact();
|
contact1.AccountId = dep.Id;
|
contact1.FirstName = '責任者';
|
contact1.LastName = 'test1经销商';
|
insert contact1;
|
|
Contact contact2 = new Contact();
|
contact2.AccountId = dep.Id;
|
contact2.FirstName = '責任者';
|
contact2.LastName = 'test1经销商';
|
insert contact2;
|
|
MergeObject__c mo = new MergeObject__c();
|
mo.master__c = contact1.Id;
|
mo.duplicates__c = contact2.Id;
|
insert mo;
|
|
Id execBTId = Database.executeBatch(new MergeObjectBatch('SELECT ID,AccountId FROM ','Contact'), 1);
|
|
}
|
}
|