@isTest
|
private class InventoryResultRecordCopyControllerTest {
|
// 创建Asset数据
|
public static User user = new User();
|
static void setupTestData() {
|
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;
|
|
SS_Batch_Column_Mapping__c InventoryHeaderName = new SS_Batch_Column_Mapping__c(Name = 'Inventory_Header_Name', SS_TableName__c='Inventory_Header_Name');
|
InventoryHeaderName.From_Column_001__c = '北京 备品中心';
|
InventoryHeaderName.SS_Column_001__c = 'BJ';
|
InventoryHeaderName.From_Column_002__c = '上海 备品中心';
|
InventoryHeaderName.SS_Column_002__c = 'SH';
|
InventoryHeaderName.From_Column_003__c = '广州 备品中心';
|
InventoryHeaderName.SS_Column_003__c = 'GZ';
|
insert new SS_Batch_Column_Mapping__c[] {InventoryHeaderName};
|
|
SS_Batch_Column_Mapping__c Agency_Inventory_Role1 = new SS_Batch_Column_Mapping__c(Name = 'Agency_Inventory_Role', SS_TableName__c='Agency_Inventory_Role__c');
|
Agency_Inventory_Role1.From_Column_001__c = '呼和浩特';
|
Agency_Inventory_Role1.SS_Column_001__c = '1.华北营业本部';
|
Agency_Inventory_Role1.From_Column_002__c = '郑州';
|
Agency_Inventory_Role1.SS_Column_002__c = '3.西北营业本部';
|
Agency_Inventory_Role1.From_Column_003__c = '沈阳';
|
Agency_Inventory_Role1.SS_Column_003__c = '2.东北营业本部';
|
insert new SS_Batch_Column_Mapping__c[] {Agency_Inventory_Role1};
|
|
// 病院を作る
|
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',
|
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',
|
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',
|
ProductCode_Ext__c='pc03',Manual_Entry__c=false);
|
insert new Product2[] {pro1, pro2, pro3};
|
|
//---------------------------主体 两个附属品(个体管理 数量管理)
|
// 保有设备A (主体)
|
Asset assetA1 = new Asset(Asset_Owner__c = 'Olympus');
|
assetA1.RecordTypeId = System.Label.Asset_RecordType;
|
assetA1.SerialNumber = 'ass01';
|
assetA1.Name = 'ass01';
|
assetA1.AccountId = dep.Id;
|
assetA1.Department_Class__c = strategicDep[0].Id;
|
assetA1.Hospital__c = hospital.Id;
|
assetA1.Product2Id = pro1.Id;
|
assetA1.Quantity = 1;
|
assetA1.Status = '有库存';
|
assetA1.Manage_type__c = '个体管理';
|
assetA1.Loaner_accsessary__c = false;
|
assetA1.Product_category__c = 'GI';
|
assetA1.Delete_Flag__c = false;
|
assetA1.Freeze_sign__c = false;
|
assetA1.Out_of_wh__c = 0;
|
assetA1.Salesdepartment__c = '1.华北营业本部';
|
assetA1.Internal_asset_location__c = '北京 备品中心';
|
assetA1.Product_category__c = 'GI';
|
assetA1.Equipment_Type__c = '产品试用';
|
assetA1.SalesProvince__c = '北京';
|
assetA1.WH_location__c = '货架号1';
|
assetA1.AssetManageConfirm__c = true;
|
// 保有设备A (附属品 数量管理)
|
Asset assetA2 = new Asset(Asset_Owner__c = 'Olympus');
|
assetA2.RecordTypeId = System.Label.Asset_RecordType;
|
assetA2.SerialNumber = 'ass02';
|
assetA2.Name = 'ass02';
|
assetA2.AccountId = dep.Id;
|
assetA2.Department_Class__c = strategicDep[0].Id;
|
assetA2.Hospital__c = hospital.Id;
|
assetA2.Product2Id = pro2.Id;
|
assetA2.Quantity = 10;
|
assetA2.Status = '有库存';
|
assetA2.Manage_type__c = '数量管理';
|
assetA2.Loaner_accsessary__c = true;
|
assetA2.Product_category__c = 'GI';
|
assetA2.Delete_Flag__c = false;
|
assetA2.Freeze_sign__c = false;
|
assetA2.Out_of_wh__c = 3;
|
assetA2.Frozen_Quantity__c = 2;
|
assetA2.Salesdepartment__c = '1.华北营业本部';
|
assetA2.Internal_asset_location__c = '北京 备品中心';
|
assetA2.Product_category__c = 'GI';
|
assetA2.Equipment_Type__c = '产品试用';
|
assetA2.SalesProvince__c = '北京';
|
assetA2.WH_location__c = '货架号2';
|
assetA2.AssetManageConfirm__c = true;
|
// 保有设备A (附属品 个体管理)
|
Asset assetA3 = new Asset(Asset_Owner__c = 'Olympus');
|
assetA3.RecordTypeId = System.Label.Asset_RecordType;
|
assetA3.SerialNumber = 'ass03';
|
assetA3.Name = 'ass03';
|
assetA3.AccountId = dep.Id;
|
assetA3.Department_Class__c = strategicDep[0].Id;
|
assetA3.Hospital__c = hospital.Id;
|
assetA3.Product2Id = pro3.Id;
|
assetA3.Quantity = 10;
|
assetA3.Status = '有库存';
|
assetA3.Manage_type__c = '数量管理';
|
assetA3.Loaner_accsessary__c = true;
|
assetA3.Product_category__c = 'GI';
|
assetA3.Delete_Flag__c = false;
|
assetA3.Freeze_sign__c = false;
|
assetA3.Out_of_wh__c = 3;
|
assetA3.Salesdepartment__c = '1.华北营业本部';
|
assetA3.Internal_asset_location__c = '北京 备品中心';
|
assetA3.Product_category__c = 'GI';
|
assetA3.Equipment_Type__c = '产品试用';
|
assetA3.SalesProvince__c = '北京';
|
assetA3.WH_location__c = '货架号3';
|
assetA3.Abandoned_Inventory__c = 1;
|
assetA3.AssetManageConfirm__c = true;
|
// 耗材
|
Asset assetC1 = new Asset(Asset_Owner__c = 'Olympus');
|
assetC1.RecordTypeId = System.Label.Asset_RecordType;
|
assetC1.SerialNumber = 'ass04';
|
assetC1.Name = 'ass04';
|
assetC1.AccountId = dep.Id;
|
assetC1.Department_Class__c = strategicDep[0].Id;
|
assetC1.Hospital__c = hospital.Id;
|
assetC1.Product2Id = pro3.Id;
|
assetC1.Quantity = 10;
|
assetC1.Status = '有库存';
|
assetC1.Manage_type__c = '数量管理';
|
assetC1.Loaner_accsessary__c = true;
|
assetC1.Product_category__c = 'GI';
|
assetC1.Delete_Flag__c = false;
|
assetC1.Freeze_sign__c = false;
|
assetC1.Out_of_wh__c = 3;
|
assetC1.Asset_loaner_category__c = '耗材';
|
assetC1.AssetMark__c = '耗材';
|
assetC1.Salesdepartment__c = '0.备品中心';
|
assetC1.Internal_asset_location__c = '上海 备品中心';
|
assetC1.Product_category__c = 'GI';
|
assetC1.Equipment_Type__c = '产品试用';
|
assetC1.SalesProvince__c = '上海';
|
assetC1.WH_location__c = '货架号4';
|
assetC1.Abandoned_Inventory__c = 1;
|
assetC1.AssetManageConfirm__c = true;
|
insert new Asset[] {assetA1, assetA2, assetA3, assetC1};
|
|
User thisUser = [SELECT Id FROM User WHERE Id = :UserInfo.getUserId()];
|
// Insert account as current user
|
System.runAs (thisUser) {
|
Profile p = [SELECT Id FROM Profile WHERE Name LIKE '%2B1%' Limit 1];
|
UserRole r = [SELECT Id FROM UserRole WHERE DeveloperName = 'beipin_huadong_staff' Limit 1];
|
user = new User(alias = 'test', email='test@acme.com',
|
emailencodingkey='UTF-8', lastname='test',
|
languagelocalekey='en_US',
|
localesidkey='en_US', profileid = p.Id, userroleid = r.Id,
|
timezonesidkey='America/Los_Angeles',
|
username='test@acme.com' + Datetime.now().getTime());
|
insert user;
|
}
|
//Repair__c repair = new Repair__c();
|
//repair.Service_Repair_No__c = 'repair';
|
//repair.Status__c = '草案中';
|
//repair.Hospital__c = hospital.Id;
|
//repair.Account__c = dep.Id;
|
//repair.Department_Class__c = strategicDep[0].id;
|
//repair.Delivered_Product__c = assetA2.Id;
|
//insert repair;
|
}
|
|
/** 点击开始盘点
|
* @author : sohobb
|
* @description : 点击开始盘点Check
|
* @created Date : 2019-2-18
|
**/
|
static testMethod void testMethod1() {
|
bp3_Setting__c conf = bp3_Setting__c.getOrgDefaults();
|
conf.BJ_Start_Inventory_User__c = UserInfo.getUserId();
|
conf.InventoryDetailArchiveFolder__c = UserInfo.getUserId();
|
insert conf;
|
|
setupTestData();
|
InventoryResultRecordCopyController con = new InventoryResultRecordCopyController();
|
con.init();
|
//con.bieCunFangDi = '北京 备品中心';
|
|
//未开始盘点
|
List<Apexpages.Message> msgs = ApexPages.getMessages();
|
boolean b = false;
|
for(Apexpages.Message msg:msgs){
|
if (msg.getDetail().contains('没有开始中的盘点,请点击开始盘点')) b = true;
|
}
|
//system.assert(b);
|
|
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', 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;
|
System.runAs(hpOwner) {
|
//没有开始权限
|
con.startInventory();
|
msgs = ApexPages.getMessages();
|
b = false;
|
for(Apexpages.Message msg:msgs){
|
if (msg.getDetail().contains('没有开始盘点的权限')) b = true;
|
}
|
//system.assert(b, msgs);
|
}
|
|
//第一次开始盘点
|
con.startInventory();
|
msgs = ApexPages.getMessages();
|
b = false;
|
for(Apexpages.Message msg:msgs){
|
if (msg.getDetail().contains('开始盘点处理,请等待Batch处理结束')) b = true;
|
}
|
//system.assert(b, msgs);
|
List<Inventory_Header_Copy__c> ihList = [select Id,InventoryCheck_PIC__c,InventorySubmit_PIC__c from Inventory_Header_Copy__c];
|
//system.assertEquals(1, ihList.size());
|
|
//再次开始盘点
|
con.startInventory();
|
msgs = ApexPages.getMessages();
|
b = false;
|
for(Apexpages.Message msg:msgs){
|
if (msg.getDetail().contains('有未结束的盘点')) b = true;
|
}
|
//system.assert(b);
|
|
//ihList[0].Inventory_Status__c = '已批准';
|
//ihList[0].InventoryCheck_PIC__c = [SELECT Id
|
// FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
//ihList[0].InventorySubmit_PIC__c = [SELECT id
|
// FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
// update ihList;
|
|
//本月已有结束的盘点
|
// con.startInventory();
|
// msgs = ApexPages.getMessages();
|
// b = false;
|
// for(Apexpages.Message msg:msgs){
|
// if (msg.getDetail().contains('本仓库本月已进行过盘点')) b = true;
|
//}
|
//system.assert(b);
|
}
|
|
static testMethod void testMethod2() {
|
setupTestData();
|
//盘点表头
|
String cunFangDi = '北京 备品中心';
|
Inventory_Header_Copy__c header = new Inventory_Header_Copy__c();
|
header.Inventory_Start_Date__c = Date.toDay();
|
header.UniqueKey__c = 'IH-0000';
|
header.Inventory_Status__c = '处理中';
|
header.Internal_asset_location__c = cunFangDi;
|
header.InventoryCheck_PIC__c = [SELECT Id
|
FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
header.InventorySubmit_PIC__c = [SELECT id
|
FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
insert header;
|
|
List<Inventory_Header_Copy__c> headerList = [select UniqueKey__c from Inventory_Header_Copy__c];
|
System.assertEquals(1, headerList.size());
|
|
System.Test.StartTest();
|
Database.executeBatch(new InventoryStartAssetSnapshotCopyBatch(cunFangDi,header));
|
System.Test.StopTest();
|
|
InventoryResultRecordCopyController con = new InventoryResultRecordCopyController();
|
con.init();
|
con.searchBtn();
|
}
|
|
static testMethod void testMethod3() {
|
setupTestData();
|
|
System.Test.StartTest();
|
//盘点表头
|
String cunFangDi = '北京 备品中心';
|
Inventory_Header_Copy__c header = new Inventory_Header_Copy__c();
|
header.Inventory_Start_Date__c = Date.toDay();
|
header.UniqueKey__c = 'IH-0000';
|
header.Inventory_Status__c = '处理中';
|
header.Internal_asset_location__c = cunFangDi;
|
header.InventoryCheck_PIC__c = [SELECT Id
|
FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
header.InventorySubmit_PIC__c = [SELECT id
|
FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
insert header;
|
|
Database.executeBatch(new InventoryStartAssetSnapshotCopyBatch(cunFangDi,header));
|
System.Test.StopTest();
|
|
InventoryResultRecordCopyController con = new InventoryResultRecordCopyController();
|
con.init();
|
con.searchBtn();
|
|
System.assertEquals(3, con.assetStatusOptionList.size());
|
con.getbieCunFangDiOps();
|
con.getInventoryUserOps();
|
con.getInventory_DeviationOps();
|
con.getInternal_Asset_FlgOps();
|
}
|
|
static testMethod void testMethod4() {
|
setupTestData();
|
|
System.Test.StartTest();
|
//盘点表头
|
String cunFangDi = '北京 备品中心';
|
Inventory_Header_Copy__c header = new Inventory_Header_Copy__c();
|
header.Inventory_Start_Date__c = Date.toDay();
|
header.UniqueKey__c = 'IH-0000';
|
header.Inventory_Status__c = '处理中';
|
header.Internal_asset_location__c = cunFangDi;
|
header.InventoryCheck_PIC__c = [SELECT Id
|
FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
header.InventorySubmit_PIC__c = [SELECT id
|
FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
insert header;
|
|
Database.executeBatch(new InventoryStartAssetSnapshotCopyBatch(cunFangDi,header));
|
System.Test.StopTest();
|
|
List<Inventory_Detail_Copy__c> ids = [select id from Inventory_Detail_Copy__c where Inventory_Header_Copy__c = :header.Id];
|
System.assertEquals(5, ids.size());
|
|
InventoryResultRecordCopyController con = new InventoryResultRecordCopyController();
|
con.init();
|
con.searchBtn();
|
System.assertEquals(19, con.salesdepartmentOpts.size());
|
System.assertEquals(57, con.salesProvinceOpts.size());
|
|
//con.inventoryDetailList[0].Inventory_Count__c = 1;
|
//con.save();
|
|
}
|
// 20220228 ljh 113盘点
|
/*static testMethod void testMethod5() {
|
setupTestData();
|
|
System.runAs(user){
|
System.Test.StartTest();
|
//盘点表头
|
String cunFangDi = '上海 备品中心';
|
Inventory_Header_Copy__c header = new Inventory_Header_Copy__c();
|
header.Inventory_Start_Date__c = Date.toDay();
|
header.UniqueKey__c = 'IH-0000';
|
header.Inventory_Status__c = '处理中';
|
header.Internal_asset_location__c = cunFangDi;
|
header.InventoryCheck_PIC__c = [SELECT Id
|
FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
header.InventorySubmit_PIC__c = [SELECT id
|
FROM User WHERE Dept__c = '医疗东北营业本部' and IsActive = true limit 1].id;
|
insert header;
|
Database.executeBatch(new InventoryStartAssetSnapshotCopyBatch(cunFangDi,header));
|
System.Test.StopTest();
|
|
InventoryResultRecordCopyController con = new InventoryResultRecordCopyController();
|
con.init();
|
con.searchBtn();
|
//update by rentx
|
System.assertEquals(2, con.assetCategoryOptionList.size());
|
System.assertEquals(19, con.salesdepartmentOpts.size());
|
System.assertEquals(57, con.salesProvinceOpts.size());
|
|
con.consumInventoryDetailList[0].Inventory_Count__c = 1;
|
con.save();
|
}
|
}*/
|
static testMethod void updaue() {
|
InventoryResultRecordCopyController.test();//先调用这个,然后继续补充测试类
|
}
|
}
|