@isTest
|
private class FixtureRemindForAgencyRequestTest {
|
static User manager;
|
static User east;
|
static User north;
|
static User south;
|
static User other;
|
static User admin;
|
static ConsumTestDataFactory factory;
|
static void setupMasterData(){
|
|
Profile p_2B3 = [SELECT Id FROM Profile WHERE Name LIKE '%2B3%' Limit 1];
|
Profile p_2B1 = [SELECT Id FROM Profile WHERE Name LIKE '%2B1%' Limit 1];
|
|
UserRole r_east = [SELECT Id FROM UserRole WHERE Name = '备品中心华东管理成员' Limit 1];
|
UserRole r_north = [SELECT Id FROM UserRole WHERE Name = '备品中心北方管理成员' Limit 1];
|
UserRole r_south = [SELECT Id FROM UserRole WHERE Name = '备品中心南方管理成员' Limit 1];
|
UserRole r_other = [SELECT Id FROM UserRole WHERE Name = '华东备品运营课' Limit 1];
|
UserRole r_xn = [SELECT Id FROM UserRole WHERE Name = '医疗西南营业本部' Limit 1];
|
UserRole r_xb = [SELECT Id FROM UserRole WHERE Name = '医疗西北营业本部' Limit 1];
|
UserRole r_db = [SELECT Id FROM UserRole WHERE Name = '医疗东北营业本部' Limit 1];
|
UserRole r_hb = [SELECT Id FROM UserRole WHERE Name = '医疗华北营业本部' Limit 1];
|
|
admin = new User(Test_staff__c = true);
|
admin.LastName = '_サンブリッジ';
|
admin.FirstName = 'う';
|
admin.Alias = 'う';
|
admin.Email = 'olympusTest03@sunbridge.com';
|
admin.username = 'olympusTest03@sunbridge.com';
|
admin.CommunityNickname = 'う';
|
admin.IsActive = true;
|
admin.EmailEncodingKey = 'ISO-2022-JP';
|
admin.TimeZoneSidKey = 'Asia/Tokyo';
|
admin.LocaleSidKey = 'ja_JP';
|
admin.LanguageLocaleKey = 'ja';
|
admin.ProfileId = System.Label.ProfileId_SystemAdmin;
|
admin.Job_Category__c = '销售推广';
|
admin.Province__c = '上海市';
|
admin.Use_Start_Date__c = Date.today().addMonths(-6);
|
admin.SalesManager__c = UserInfo.getUserId();
|
admin.BuchangApprovalManagerSales__c = UserInfo.getUserId();
|
admin.JingliApprovalManager__c = UserInfo.getUserId();
|
admin.BuchangApprovalManager__c = UserInfo.getUserId();
|
admin.ZongjianApprovalManager__c = UserInfo.getUserId();
|
admin.Dept__c = '医疗东北营业本部';
|
/// admin.profileid = p_2B3.Id;
|
admin.userroleid = r_north.Id;
|
insert admin;
|
|
System.runAs (admin) {
|
|
manager = new User(alias = 'manager', email='manager@acme.com',
|
emailencodingkey='UTF-8', lastname='manager',
|
languagelocalekey='en_US',
|
localesidkey='ja_JP', profileid = p_2B3.Id, userroleid = r_xn.Id,
|
timezonesidkey='Asia/Shanghai',
|
username='manager@acme.com' + Datetime.now().getTime());
|
|
east = new User(alias = 'east', email='east@acme.com',
|
emailencodingkey='UTF-8', lastname='east',
|
languagelocalekey='en_US',
|
localesidkey='ja_JP', profileid = p_2B1.Id, userroleid = r_xb.Id,
|
timezonesidkey='Asia/Shanghai',
|
username='east@acme.com' + Datetime.now().getTime());
|
|
south = new User(alias = 'south', email='south@acme.com',
|
emailencodingkey='UTF-8', lastname='south',
|
languagelocalekey='en_US',
|
localesidkey='ja_JP', profileid = p_2B1.Id, userroleid = r_db.Id,
|
timezonesidkey='Asia/Shanghai',
|
username='south@acme.com' + Datetime.now().getTime());
|
|
north = new User(alias = 'north', email='north@acme.com',
|
emailencodingkey='UTF-8', lastname='north',
|
languagelocalekey='en_US',
|
localesidkey='ja_JP', profileid = p_2B1.Id, userroleid = r_hb.Id,
|
timezonesidkey='Asia/Shanghai',
|
username='north@acme.com' + Datetime.now().getTime());
|
|
other = new User(alias = 'other', email='other@acme.com',
|
emailencodingkey='UTF-8', lastname='other',
|
languagelocalekey='en_US',
|
localesidkey='ja_JP', profileid = p_2B1.Id, userroleid = r_east.Id,
|
timezonesidkey='Asia/Shanghai',
|
username='other@acme.com' + Datetime.now().getTime());
|
|
insert new User[] {manager, east, south, north, other};
|
}
|
|
}
|
static void setupRentalData() {
|
// 省
|
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;
|
// 戦略科室を得る
|
Account strategicDep = new Account();
|
strategicDep.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_Class_OTH'].id;
|
strategicDep.Name = 'Olympus社内 其他';
|
strategicDep.Department_Class_Label__c = '其他';
|
strategicDep.Hospital__c = hospital.Id;
|
strategicDep.ParentId = hospital.Id;
|
insert strategicDep;
|
|
|
// 戦略科室を得る
|
// 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 dep12';
|
dep.AgentCode_Ext__c = '99000000';
|
dep.ParentId = strategicDep.Id;
|
dep.Department_Class__c = strategicDep.Id;
|
dep.Hospital__c = hospital.Id;
|
insert dep;
|
|
Contact contact2 = new Contact();
|
contact2.AccountId = dep.Id;
|
contact2.FirstName = '責任者';
|
contact2.LastName = 'test1经销商';
|
insert contact2;
|
|
// 产品
|
Product2 pro1 = new Product2(Name='name01',IsActive=true,Family='GI',
|
Fixture_Model_No__c='n01',Serial_Lot_No__c='S/N tracing',
|
Fixture_Model_No_T__c = 'n01', Asset_Model_No__c = 'Pro1',
|
ProductCode_Ext__c='pc01',Manual_Entry__c=false);
|
Product2 pro2 = new Product2(Name='name02',IsActive=true,Family='GI',
|
Fixture_Model_No__c='n02',Serial_Lot_No__c='Lot tracing',
|
Fixture_Model_No_T__c = 'n02', Asset_Model_No__c = 'Pro2',
|
ProductCode_Ext__c='pc02',Manual_Entry__c=false);
|
Product2 pro3 = new Product2(Name='name03',IsActive=true,Family='GI',
|
Fixture_Model_No__c='n03',Serial_Lot_No__c='Lot tracing',
|
Fixture_Model_No_T__c = 'n03', Asset_Model_No__c = 'Pro3',
|
ProductCode_Ext__c='pc03',Manual_Entry__c=false);
|
insert new Product2[] {pro1, pro2, pro3};
|
|
//备品借出申请
|
Rental_Apply__c raObj = new Rental_Apply__c();
|
raObj.ToAgency__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 = hospital.Id;
|
raObj.Strategic_dept__c = strategicDep.Id;
|
raObj.Account__c = dep.Id;
|
raObj.Request_shipping_day__c = Date.toDay();
|
raObj.Hope_Lonaer_date_Num__c = 1;
|
raObj.Request_return_day__c = Date.toDay();
|
raObj.Status__c = '草案中';
|
raObj.Phone_number__c = '1234567890';
|
raObj.Loaner_medical_Staff__c = contact2.Id;
|
//raObj.Person_In_Charge__c = manager.Id;
|
raObj.ToAgency__c = '大连';
|
raObj.Loaner_centre_mail_address__c = 'ocm_asset@olympus.com.cn';
|
raObj.SalesdeptSelect__c = '医疗东北营业本部';
|
Map<String,Schema.RecordTypeInfo> DEVELOPERNAMEMAP = Schema.SObjectType.Rental_Apply__c.getRecordTypeInfosByDeveloperName();
|
raObj.RecordTypeId = DEVELOPERNAMEMAP.get('AgencyRequest').getRecordTypeId();
|
insert raObj;
|
|
// 保有设备
|
Asset asset1 = new Asset(Asset_Owner__c = 'Olympus');
|
asset1.RecordTypeId = System.Label.Asset_RecordType;
|
asset1.SerialNumber = 'asset1';
|
asset1.Name = 'asset1';
|
asset1.AccountId = dep.Id;
|
asset1.Department_Class__c = strategicDep.Id;
|
asset1.Hospital__c = hospital.Id;
|
asset1.Product2Id = pro1.Id;
|
asset1.Quantity = 1;
|
asset1.Status = '不明';
|
asset1.Manage_type__c = '个体管理';
|
asset1.Loaner_accsessary__c = false;
|
asset1.Out_of_wh__c = 0;
|
asset1.Salesdepartment__c = '1.华北营业本部';
|
asset1.Internal_asset_location__c = '北京 备品中心';
|
asset1.Product_category__c = 'GI';
|
asset1.Equipment_Type__c = '产品试用';
|
asset1.SalesProvince__c = '北京';
|
asset1.CompanyOfEquipment__c = '北京';
|
asset1.Internal_Asset_number__c = '0001';
|
asset1.EquipmentSet_Managment_Code__c = 'テスト1';
|
|
Asset asset2 = new Asset(Asset_Owner__c = 'Olympus');
|
asset2.RecordTypeId = System.Label.Asset_RecordType;
|
asset2.SerialNumber = 'asset2';
|
asset2.Name = 'asset2';
|
asset2.AccountId = dep.Id;
|
asset2.Department_Class__c = strategicDep.Id;
|
asset2.Hospital__c = hospital.Id;
|
asset2.Product2Id = pro2.Id;
|
asset2.Quantity = 1;
|
asset2.Status = '不明';
|
asset2.Manage_type__c = '个体管理';
|
asset2.Loaner_accsessary__c = true;
|
asset2.Out_of_wh__c = 0;
|
asset2.Salesdepartment__c = '1.华北营业本部';
|
asset2.Internal_asset_location__c = '北京 备品中心';
|
asset2.Product_category__c = 'GI';
|
asset2.Equipment_Type__c = '产品试用';
|
asset2.SalesProvince__c = '北京';
|
asset2.CompanyOfEquipment__c = '北京';
|
asset2.Internal_Asset_number__c = '0002';
|
asset2.EquipmentSet_Managment_Code__c = 'テスト2';
|
|
Asset asset3 = new Asset(Asset_Owner__c = 'Olympus');
|
asset3.RecordTypeId = System.Label.Asset_RecordType;
|
asset3.SerialNumber = 'asset3';
|
asset3.Name = 'asset3';
|
asset3.AccountId = dep.Id;
|
asset3.Department_Class__c = strategicDep.Id;
|
asset3.Hospital__c = hospital.Id;
|
asset3.Product2Id = pro3.Id;
|
asset3.Quantity = 50;
|
asset3.Status = '不明';
|
asset3.Manage_type__c = '数量管理';
|
asset3.Loaner_accsessary__c = true;
|
asset3.Out_of_wh__c = 0;
|
asset3.Salesdepartment__c = '1.华北营业本部';
|
asset3.Internal_asset_location__c = '北京 备品中心';
|
asset3.Product_category__c = 'GI';
|
asset3.Equipment_Type__c = '产品试用';
|
asset3.SalesProvince__c = '北京';
|
asset3.CompanyOfEquipment__c = '北京';
|
asset3.Internal_Asset_number__c = '0003';
|
asset3.EquipmentSet_Managment_Code__c = 'テスト3';
|
insert new Asset[] {asset1, asset2, asset3};
|
|
// 备品配套
|
Fixture_Set__c fsObj1 = new Fixture_Set__c();
|
fsObj1.Name = 'set1';
|
fsObj1.Fixture_Set_Body_Model_No__c = 'modelNo1';
|
fsObj1.Loaner_name__c = 'name1';
|
insert fsObj1;
|
|
// 备品配套明细
|
Fixture_Set_Detail__c fsdObjA1 = new Fixture_Set_Detail__c();
|
fsdObjA1.Name = '备品配套明细名1';
|
fsdObjA1.Name_CHN_Created__c = '中文名称1';
|
fsdObjA1.Product2__c = pro1.Id;
|
fsdObjA1.Fixture_Set__c = fsObj1.Id;
|
fsdObjA1.Is_Body__c = true;
|
fsdObjA1.Is_Optional__c = false;
|
fsdObjA1.UniqueKey__c = fsObj1.Id + ':' + pro1.Id;
|
fsdObjA1.SortInt__c = 1;
|
insert fsdObjA1;
|
|
// Fixture_Set_Detail__c fsdObjA2 = new Fixture_Set_Detail__c();
|
// fsdObjA2.Name = '备品配套明细名2';
|
// fsdObjA2.Name_CHN_Created__c = '中文名称2';
|
// fsdObjA2.Product2__c = pro2.Id;
|
// fsdObjA2.Fixture_Set__c = fsObj1.Id;
|
// // fsdObjA2.Is_Body__c = true;
|
// fsdObjA2.Is_Optional__c = true;
|
// fsdObjA2.UniqueKey__c = fsObj1.Id + ':' + pro2.Id;
|
// fsdObjA2.SortInt__c = 2;
|
|
// Fixture_Set_Detail__c fsdObjA3 = new Fixture_Set_Detail__c();
|
// fsdObjA3.Name = '备品配套明细名3';
|
// fsdObjA3.Name_CHN_Created__c = '中文名称3';
|
// fsdObjA3.Product2__c = pro3.Id;
|
// fsdObjA3.Fixture_Set__c = fsObj1.Id;
|
// // fsdObjA3.Is_Body__c = true;
|
// fsdObjA3.Is_Optional__c = true;
|
// fsdObjA3.UniqueKey__c = fsObj1.Id + ':' + pro3.Id;
|
// fsdObjA3.SortInt__c = 3;
|
// insert new Fixture_Set_Detail__c[] {fsdObjA1,fsdObjA2,fsdObjA3};
|
|
// 借出备品配套一览
|
Rental_Apply_Equipment_Set__c raesObj = new Rental_Apply_Equipment_Set__c();
|
raesObj.Rental_Apply__c = raObj.Id;
|
raesObj.Fixture_Set__c = fsObj1.Id;
|
raesObj.Cancel_Select__c = false;
|
raesObj.Rental_Start_Date__c = Date.toDay();
|
raesObj.Rental_End_Date__c = Date.toDay();
|
raesObj.IndexFromUniqueKey__c = 1;
|
raesObj.UniqueKey__c = '1:'+ fsObj1.Id + ':1';
|
insert raesObj;
|
|
// 借出备品配套一览明细
|
Rental_Apply_Equipment_Set_Detail__c raesdObj1 = new Rental_Apply_Equipment_Set_Detail__c();
|
raesdObj1.Rental_Apply__c = raObj.Id;
|
raesdObj1.Fixture_Set_Detail__c = fsdObjA1.Id;
|
raesdObj1.Shippment_loaner_time__c = Date.today();
|
raesdObj1.Rental_Num__c = 1;
|
raesdObj1.Queue_Number__c = null;
|
raesdObj1.Is_Body__c = true;
|
raesdObj1.Rental_Apply_Equipment_Set__c = raesObj.Id;
|
raesdObj1.IndexFromUniqueKey__c = 1;
|
raesdObj1.UniqueKey__c = '1:'+ raesObj.Id + ':' + fsdObjA1.Id + ':1';
|
raesdObj1.FSD_OneToOneAccessory_Cnt__c = 0;
|
raesdObj1.FSD_Is_Optional__c = false;
|
raesdObj1.FSD_Is_OneToOne__c = false;
|
raesdObj1.ApplyPersonAppended__c = false;
|
raesdObj1.FSD_Fixture_Model_No__c = 'n01';
|
raesdObj1.Fixture_Model_No_text__c = 'n01';
|
raesdObj1.RAESD_Status_Text__c = '待分配';
|
insert raesdObj1;
|
|
// Rental_Apply_Equipment_Set_Detail__c raesdObj2 = new Rental_Apply_Equipment_Set_Detail__c();
|
// raesdObj2.Rental_Apply__c = raObj.Id;
|
// raesdObj2.Fixture_Set_Detail__c = fsdObjA2.Id;
|
// raesdObj2.Rental_Num__c = 1;
|
// raesdObj2.Queue_Number__c = null;
|
// raesdObj2.Is_Body__c = true;
|
// raesdObj2.Rental_Apply_Equipment_Set__c = raesObj.Id;
|
// raesdObj2.IndexFromUniqueKey__c = 2;
|
// raesdObj2.UniqueKey__c = '1:'+ raesObj.Id + ':' + fsdObjA2.Id + ':2';
|
// raesdObj2.FSD_OneToOneAccessory_Cnt__c = 0;
|
// raesdObj2.FSD_Is_Optional__c = false;
|
// raesdObj2.FSD_Is_OneToOne__c = false;
|
// raesdObj2.ApplyPersonAppended__c = false;
|
// raesdObj2.FSD_Fixture_Model_No__c = 'n02';
|
// raesdObj2.Fixture_Model_No_text__c = 'n02';
|
// raesdObj2.RAESD_Status_Text__c = '待分配';
|
|
// Rental_Apply_Equipment_Set_Detail__c raesdObj3 = new Rental_Apply_Equipment_Set_Detail__c();
|
// raesdObj3.Rental_Apply__c = raObj.Id;
|
// raesdObj3.Fixture_Set_Detail__c = fsdObjA3.Id;
|
// raesdObj3.Rental_Num__c = 1;
|
// raesdObj3.Queue_Number__c = null;
|
// raesdObj3.Is_Body__c = true;
|
// raesdObj3.Rental_Apply_Equipment_Set__c = raesObj.Id;
|
// raesdObj3.IndexFromUniqueKey__c = 3;
|
// raesdObj3.UniqueKey__c = '1:'+ raesObj.Id + ':' + fsdObjA3.Id + ':3';
|
// raesdObj3.FSD_OneToOneAccessory_Cnt__c = 2;
|
// raesdObj3.FSD_Is_Optional__c = false;
|
// raesdObj3.FSD_Is_OneToOne__c = false;
|
// raesdObj3.ApplyPersonAppended__c = false;
|
// raesdObj3.FSD_Fixture_Model_No__c = 'n03';
|
// raesdObj3.Fixture_Model_No_text__c = 'n03';
|
// raesdObj3.RAESD_Status_Text__c = '待分配';
|
// insert new Rental_Apply_Equipment_Set_Detail__c[] {raesdObj1,raesdObj2,raesdObj3};
|
}
|
|
static testMethod void testManager() {
|
setupMasterData();
|
|
Test.startTest();
|
System.runAs(admin){
|
setupRentalData();
|
FixtureRemindForAgencyRequestController controller = new FixtureRemindForAgencyRequestController();
|
controller.init();
|
controller.test();// 20220112 ljh add
|
controller.createSnapshotRecord('合计');
|
controller.createSnapshotRecord('大连');
|
controller.showStyle = '办事处';
|
controller.changeShowStyle();
|
FixtureRemindSnapshot__c frs1 = new FixtureRemindSnapshot__c(Dai_Fen_Pei_Cnt__c = 1
|
, Region__c = '大连'
|
, Time__c ='14:00'
|
, Date__c = System.today()
|
, Rental_ApplyRecordtype__c = '办事处'
|
);
|
FixtureRemindSnapshot__c frs2 = new FixtureRemindSnapshot__c(Dai_Fen_Pei_Cnt__c = 1
|
, Region__c = '沈阳'
|
, Time__c ='14:00'
|
, Date__c = System.today()
|
, Rental_ApplyRecordtype__c = '办事处'
|
);
|
FixtureRemindSnapshot__c frs3 = new FixtureRemindSnapshot__c(Dai_Fen_Pei_Cnt__c = 1
|
, Region__c = '长春'
|
, Time__c ='14:00'
|
, Date__c = System.today()
|
, Rental_ApplyRecordtype__c = '办事处'
|
);
|
FixtureRemindSnapshot__c frs4 = new FixtureRemindSnapshot__c(Dai_Fen_Pei_Cnt__c = 1
|
, Region__c = '哈尔滨'
|
, Time__c ='14:00'
|
, Date__c = System.today()
|
, Rental_ApplyRecordtype__c = '办事处'
|
);
|
insert new FixtureRemindSnapshot__c[]{frs1,frs2,frs3,frs4};
|
|
controller.snap.time__c ='14:00';
|
controller.snap.Date__c = Date.today();
|
controller.refreshTable();
|
controller.showStyle = '办事处';
|
controller.changeShowStyle();
|
}
|
|
System.runAs(manager){
|
FixtureRemindForAgencyRequestController controller = new FixtureRemindForAgencyRequestController();
|
controller.init();
|
}
|
System.runAs(east){
|
FixtureRemindForAgencyRequestController controller = new FixtureRemindForAgencyRequestController();
|
controller.init();
|
}
|
System.runAs(south){
|
FixtureRemindForAgencyRequestController controller = new FixtureRemindForAgencyRequestController();
|
controller.init();
|
}
|
System.runAs(other){
|
FixtureRemindForAgencyRequestController controller = new FixtureRemindForAgencyRequestController();
|
controller.init();
|
}
|
System.runAs(north){
|
FixtureRemindForAgencyRequestController controller = new FixtureRemindForAgencyRequestController();
|
controller.init();
|
}
|
Test.stopTest();
|
|
}
|
|
}
|