@isTest
|
private class AssetMaintainHeaderWebServiceTest {
|
public AssetMaintainHeaderWebServiceTest() {
|
|
}
|
|
|
private static void setupData() {
|
// OLY_OCM-643 追加EscapeNFM001Trigger
|
ControllerUtil.EscapeNFM001Trigger = true;
|
// 省
|
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 = [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 dep';
|
dep.AgentCode_Ext__c = '9999998';
|
dep.ParentId = strategicDep[0].Id;
|
dep.Department_Class__c = strategicDep[0].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};
|
// 保有设备1 (主体) 主体只能是个体管理
|
List<Asset> assetTestList = new List<Asset>();
|
Asset asset1 = new Asset();
|
asset1.RecordTypeId = System.Label.Asset_RecordType;
|
asset1.Asset_Owner__c = 'Olympus';
|
asset1.SerialNumber = 'asset1';
|
asset1.Name = 'asset1';
|
asset1.AccountId = dep.Id;
|
asset1.Department_Class__c = strategicDep[0].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.Delete_Flag__c = false;
|
asset1.AssetManageConfirm__c = true;
|
asset1.Freeze_sign__c = false;
|
asset1.Out_of_wh__c = 0;
|
asset1.Salesdepartment__c = '9.MA本部';
|
asset1.Product_category__c = 'GI';
|
asset1.Equipment_Type__c = '产品试用';
|
asset1.SalesProvince__c = '北京';
|
asset1.CompanyOfEquipment__c = '北京';
|
asset1.Internal_Asset_number__c = '0001';
|
asset1.WH_location__c = '货架号1';
|
assetTestList.add(asset1);
|
// 保有设备2 (附属品 数量管理)
|
Asset asset2 = new Asset();
|
asset2.RecordTypeId = System.Label.Asset_RecordType;
|
asset2.Asset_Owner__c = 'Olympus';
|
asset2.SerialNumber = 'asset2';
|
asset2.Name = 'asset2';
|
asset2.AccountId = dep.Id;
|
asset2.Department_Class__c = strategicDep[0].Id;
|
asset2.Hospital__c = hospital.Id;
|
asset2.Product2Id = pro2.Id;
|
asset2.Quantity = 10;
|
asset2.Status = '使用中';
|
asset2.Manage_type__c = '数量管理';
|
asset2.Loaner_accsessary__c = true;
|
asset2.Delete_Flag__c = false;
|
asset2.AssetManageConfirm__c = true;
|
asset2.Freeze_sign__c = false;
|
asset2.Out_of_wh__c = 3;
|
asset2.Frozen_Quantity__c = 2;
|
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.WH_location__c = '货架号2';
|
assetTestList.add(asset2);
|
insert assetTestList;
|
List<Asset> assetList = [SELECT Id, Asset_Owner__c FROM Asset
|
WHERE Asset_Owner__c = 'Olympus'
|
AND Delete_Flag__c = false
|
AND AssetManageConfirm__c = true
|
ORDER BY Id asc nulls first
|
];
|
System.assertEquals(2, assetList.size());
|
System.assertEquals('Olympus', assetList[0].Asset_Owner__c);
|
|
|
}
|
private static User setupUser(){
|
User u = new User(alias = 'manager', email='manager@acme.com',
|
emailencodingkey='UTF-8', lastname='manager',
|
languagelocalekey='en_US',
|
localesidkey='ja_JP', profileid = System.Label.ProfileId_SystemAdmin,
|
timezonesidkey='Asia/Shanghai',
|
username='manager@acme.com' + Datetime.now().getTime(),
|
ZongjianApprovalManager__c = UserInfo.getUserId()
|
);
|
insert u;
|
return u;
|
}
|
static testMethod void testsubmitApply() {
|
setupData();
|
User u = setupUser();
|
System.runAs(u){
|
AssetMaintainHeaderWebService assService = new AssetMaintainHeaderWebService();
|
Asset ass = [SELECT Id,MaintainCount_For_Processing__c FROM Asset WHERE Name='asset1' LIMIT 1];
|
System.assertEquals(0, intValueOf(ass.MaintainCount_For_Processing__c));
|
|
AssetMaintainHeader__c header = new AssetMaintainHeader__c();
|
header.MaintainType__c = '实物报废';
|
header.Date__c = System.today();
|
insert header;
|
|
AssetMaintainDetail__c detail = new AssetMaintainDetail__c();
|
detail.MaintainType__c = '实物报废';
|
detail.MaintainReason__c = '1';
|
detail.MaintainCount__c = 1;
|
detail.AssetMaintainHeader__c = header.Id;
|
detail.Asset__c = ass.Id;
|
detail.OrderNumber__c = 1;
|
insert detail;
|
|
Test.startTest();
|
|
List<AssetMaintainHeader__c> headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
System.assertEquals(1, headerList.size());
|
System.assertEquals('草案中', headerList[0].Status__c);
|
|
String res = AssetMaintainHeaderWebService.submitApply('null');
|
System.assertEquals('维护单不存在。', res);
|
|
res = AssetMaintainHeaderWebService.submitApply(headerList[0].Id);
|
System.assertEquals('1', res);
|
headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
System.assertEquals('申请中', headerList[0].Status__c);
|
|
ass = [SELECT Id,MaintainCount_For_Processing__c FROM Asset WHERE Name='asset1' LIMIT 1];
|
System.assertEquals(1, ass.MaintainCount_For_Processing__c);
|
|
res = AssetMaintainHeaderWebService.submitApply(headerList[0].Id);
|
System.assertEquals('请确认维护单状态,已经提交过的申请,不能重复提交', res);
|
|
AssetMaintainHeaderWebService.applyPermission();
|
|
|
Test.stopTest();
|
}
|
}
|
|
static testMethod void testsubmitApply01() {
|
setupData();
|
|
AssetMaintainHeaderWebService assService = new AssetMaintainHeaderWebService();
|
Asset ass = [SELECT Id,MaintainCount_For_Processing__c FROM Asset WHERE Name='asset1' LIMIT 1];
|
System.assertEquals(0, intValueOf(ass.MaintainCount_For_Processing__c));
|
|
AssetMaintainHeader__c header = new AssetMaintainHeader__c();
|
header.MaintainType__c = '实物报废';
|
header.Date__c = System.today();
|
insert header;
|
|
AssetMaintainDetail__c detail = new AssetMaintainDetail__c();
|
detail.MaintainType__c = '实物报废';
|
detail.MaintainReason__c = '1';
|
detail.MaintainCount__c = 1;
|
detail.AssetMaintainHeader__c = header.Id;
|
detail.Asset__c = ass.Id;
|
detail.OrderNumber__c = 1;
|
insert detail;
|
|
Test.startTest();
|
|
List<AssetMaintainHeader__c> headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
System.assertEquals(1, headerList.size());
|
System.assertEquals('草案中', headerList[0].Status__c);
|
|
String res = AssetMaintainHeaderWebService.submitApply('null');
|
System.assertEquals('维护单不存在。', res);
|
|
res = AssetMaintainHeaderWebService.submitApply(headerList[0].Id);
|
// System.assertEquals('1', res);
|
// headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
// System.assertEquals('申请中', headerList[0].Status__c);
|
|
// ass = [SELECT Id,MaintainCount_For_Processing__c FROM Asset WHERE Name='asset1' LIMIT 1];
|
// System.assertEquals(1, ass.MaintainCount_For_Processing__c);
|
|
// res = AssetMaintainHeaderWebService.submitApply(headerList[0].Id);
|
// System.assertEquals('请确认维护单状态,已经提交过的申请,不能重复提交', res);
|
|
// AssetMaintainHeaderWebService.applyPermission();
|
|
|
Test.stopTest();
|
}
|
static testMethod void testDeleteApply() {
|
setupData();
|
User u = setupUser();
|
System.runAs(u){
|
Asset ass = [SELECT Id,MaintainCount_For_Processing__c FROM Asset WHERE Name='asset1' LIMIT 1];
|
System.assertEquals(0, intValueOf(ass.MaintainCount_For_Processing__c));
|
|
AssetMaintainHeader__c header = new AssetMaintainHeader__c();
|
header.MaintainType__c = '实物报废';
|
header.Date__c = System.today();
|
insert header;
|
|
AssetMaintainDetail__c detail = new AssetMaintainDetail__c();
|
detail.MaintainType__c = '实物报废';
|
detail.MaintainCount__c = 1;
|
detail.MaintainReason__c = '1';
|
detail.AssetMaintainHeader__c = header.Id;
|
detail.Asset__c = ass.Id;
|
detail.OrderNumber__c = 1;
|
insert detail;
|
|
Test.startTest();
|
List<AssetMaintainHeader__c> headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
System.assertEquals(1, headerList.size());
|
System.assertEquals('草案中', headerList[0].Status__c);
|
|
String res = AssetMaintainHeaderWebService.submitApply(headerList[0].Id);
|
System.assertEquals('1', res);
|
headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
System.assertEquals('申请中', headerList[0].Status__c);
|
|
|
ass = [SELECT Id,MaintainCount_For_Processing__c FROM Asset WHERE Name='asset1' LIMIT 1];
|
System.assertEquals(1, ass.MaintainCount_For_Processing__c);
|
|
res = AssetMaintainHeaderWebService.deleteApply('null');
|
System.assertEquals('维护单不存在。', res);
|
|
res = AssetMaintainHeaderWebService.deleteApply(headerList[0].Id);
|
System.assertEquals('需要调回/驳回申请后再删除', res);
|
|
headerList[0].Status__c = '草案中';
|
update headerList[0];
|
res = AssetMaintainHeaderWebService.deleteApply(headerList[0].Id);
|
|
headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
System.assertEquals(0, headerList.size());
|
|
|
|
Test.stopTest();
|
}
|
}
|
static testMethod void testAbandon() {
|
setupData();
|
User u = setupUser();
|
System.runAs(u){
|
AssetMaintainHeader__c header = new AssetMaintainHeader__c();
|
header.MaintainType__c = '实物报废';
|
header.Date__c = System.today();
|
insert header;
|
|
AssetMaintainDetail__c detail = new AssetMaintainDetail__c();
|
detail.MaintainType__c = '实物报废';
|
detail.AssetMaintainHeader__c = header.Id;
|
detail.Asset__c = [SELECT Id FROM Asset LIMIT 1].Id;
|
detail.OrderNumber__c = 1;
|
insert detail;
|
|
List<AssetMaintainHeader__c> headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
System.assertEquals(1, headerList.size());
|
System.assertEquals('草案中', headerList[0].Status__c);
|
|
Test.startTest();
|
|
String res = AssetMaintainHeaderWebService.abandon(headerList[0].Id);
|
System.assertEquals('请确认维护单状态,只有已批准的申请才可以废弃', res);
|
|
res = AssetMaintainHeaderWebService.abandon('null');
|
System.assertEquals('维护单不存在。', res);
|
|
res = AssetMaintainHeaderWebService.submitApply(headerList[0].Id);
|
System.assertEquals('1', res);
|
headerList = [SELECT Id, Status__c FROM AssetMaintainHeader__c];
|
System.assertEquals('申请中', headerList[0].Status__c);
|
|
headerList[0].Status__c = '已批准';
|
headerList[0].Batch_Processing__c = true;
|
update headerList;
|
|
res = AssetMaintainHeaderWebService.abandon(headerList[0].Id);
|
System.assertEquals('此维护单有Batch正在执行,请稍候', res);
|
|
headerList[0].Batch_Processing__c = false;
|
update headerList;
|
|
res = AssetMaintainHeaderWebService.abandon(headerList[0].Id);
|
System.assertEquals('1', res);
|
|
Test.stopTest();
|
}
|
}
|
private static Integer intValueOf(Decimal d) {
|
if(d == null || d < 0) {
|
return 0;
|
}
|
return Integer.valueOf(d);
|
}
|
}
|