@isTest
|
private class LostReportHandlerTest {
|
// AWSServiceTool2没上线就把这部分注释 start 20220408
|
@TestSetup
|
static void setup(){
|
TestDataUtility.CreatePIPolicyConfigurations(new string[]{'Agency_Contact__c','Contact'});
|
}
|
|
@isTest
|
static void Test1(){
|
Test.setMock(HttpCalloutMock.class, new HttpMock());
|
|
List<Agency_Contact__c> lra = new List<Agency_Contact__c>();
|
lra.add(new Agency_Contact__c(
|
));
|
insert lra;
|
Test.startTest();
|
//system.debug(PIHelper.getPIIntegrationInfo('Agency_Contact__c').newEncryptUrl);
|
AWSServiceTool2.EncryptPushCore(Json.serialize(lra),'Agency_Contact__c');
|
AWSServiceTool2.EncryptPushFuture(null,null);
|
Test.stopTest();
|
}
|
|
@isTest
|
static void Test2(){
|
Test.setMock(HttpCalloutMock.class, new HttpMock());
|
|
List<Agency_Contact__c> lra = new List<Agency_Contact__c>();
|
lra.add(new Agency_Contact__c(
|
Aws_Data_Id__c = '123456'
|
));
|
insert lra;
|
Test.startTest();
|
//system.debug(PIHelper.getPIIntegrationInfo('Agency_Contact__c').newEncryptUrl);
|
AWSServiceTool2.EncryptPushCore(Json.serialize(lra),'Agency_Contact__c');
|
Test.stopTest();
|
}
|
|
@isTest
|
static void Test3(){
|
Test.setMock(HttpCalloutMock.class, new HttpMock());
|
|
|
Test.startTest();
|
AWSServiceTool2.EncryptPushData(new string[]{'0031000000O4Cff'});
|
|
Test.stopTest();
|
}
|
|
//@isTest
|
// static void Test2(){
|
// Test.setMock(HttpCalloutMock.class, new HttpMock());
|
|
// List<Agency_Contact__c> lra = new List<Agency_Contact__c>();
|
// lra.add(new Agency_Contact__c(
|
// Id = 'a2R1m0000007BPD',
|
// Aws_Data_Id__c = '123456'
|
// ));
|
// Test.startTest();
|
// //system.debug(PIHelper.getPIIntegrationInfo('Agency_Contact__c').newEncryptUrl);
|
// AWSServiceTool2.EncryptPushCore(Json.serialize(lra),'Agency_Contact__c');
|
// Test.stopTest();
|
// }
|
|
class HttpMock implements HttpCalloutMock{
|
public HTTPResponse respond(HTTPRequest request) {
|
// 创建一个假的回应
|
System.debug('------------------------------------------------------');
|
HttpResponse response = new HttpResponse();
|
string body = '';
|
system.debug(request.getEndpoint());
|
if(request.getEndpoint().contains('token')){
|
system.debug('url=token');
|
response.setHeader('Content-Type', 'application/json');
|
body='{ "message": "", "object": "freqfewqfewewfewfew", "status": "", "success": true, "timestamp": 0, "txId": "" }';
|
} else if(request.getEndpoint().contains('insert')){
|
system.debug('url=Insert');
|
response.setHeader('Content-Type', 'application/json');
|
body='{ "message": "", "object": [ { "dataId": "123456", "directShippmentAddress": "", "directShippmentAddressEncrypt": "", "isDelete": 0, "phoneNumber": "", "phoneNumberEncrypt": "", "sfRecordId": "a2R1m0000007BPD" } ], "status": "", "success": true, "timestamp": 0, "txId": "" }';
|
} else if(request.getEndpoint().contains('update')){
|
system.debug('url=update');
|
response.setHeader('Content-Type', 'application/json');
|
body='{ "message": "", "object": [ { "dataId": "123456", "directShippmentAddress": "", "directShippmentAddressEncrypt": "", "isDelete": 0, "phoneNumber": "", "phoneNumberEncrypt": "", "sfRecordId": "a2R1m0000007BPD" } ], "status": "", "success": true, "timestamp": 0, "txId": "" }';
|
} else{
|
|
}
|
|
response.setBody(body);
|
response.setStatus('OK');
|
response.setStatusCode(200);
|
return response;
|
// }
|
}
|
}
|
// AWSServiceTool2没上线就把这部分注释 end
|
// 202220531 ljh end
|
// 创建Asset数据
|
static void setupTestData() {
|
// 病院を作る
|
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.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;
|
insert new Asset[] {assetA1, assetA2, assetA3};
|
|
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;
|
|
SS_Batch_Column_Mapping__c opdMapping = new SS_Batch_Column_Mapping__c(Name = 'Inventory_Header_Name', SS_TableName__c='Inventory_Header_Name');
|
opdMapping.From_Column_001__c = '北京 备品中心';
|
opdMapping.SS_Column_001__c = 'BJ';
|
opdMapping.From_Column_002__c = '上海 备品中心';
|
opdMapping.SS_Column_002__c = 'SH';
|
insert new SS_Batch_Column_Mapping__c[] {opdMapping};
|
|
String cunFangDi = '北京 备品中心';
|
Inventory_Header__c header = new Inventory_Header__c();
|
header.Inventory_Start_Date__c = Date.toDay();
|
header.UniqueKey__c = 'IH-0000';
|
header.Inventory_Status__c = '盘点中';
|
header.Internal_asset_location__c = cunFangDi;
|
insert header;
|
|
Inventory_Detail__c id1 = new Inventory_Detail__c();
|
id1.Asset__c = assetA1.Id;
|
id1.Amount__c = assetA1.Quantity;
|
id1.WH_Location__c = assetA1.WH_location__c;
|
id1.OneToOne_Body__c = false;
|
id1.OneToOne_Accsessary__c = false;
|
id1.Asset_Status__c = '在库';
|
id1.Sync_Asset_Record_Flag__c = true;
|
id1.UniqueKey__c = header.Id+':'+pro1.Fixture_Model_No__c+':在库:'+null+':'+assetA1.Id;
|
id1.Fixture_Model_No__c = pro1.Fixture_Model_No__c;
|
id1.Internal_asset_location__c = cunFangDi;
|
id1.Inventory_Time__c = Date.toDay();
|
id1.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id2 = new Inventory_Detail__c();
|
id2.Asset__c = assetA2.Id;
|
id2.Amount__c = 1;
|
id2.WH_Location__c = assetA2.WH_location__c;
|
id2.OneToOne_Body__c = false;
|
id2.OneToOne_Accsessary__c = false;
|
id2.Asset_Status__c = '维修中';
|
id2.Sync_Asset_Record_Flag__c = false;
|
id2.UniqueKey__c = header.Id+':'+pro2.Fixture_Model_No__c+':维修中:'+null+':'+assetA2.Id+':'+repair.Id;
|
id2.Fixture_Model_No__c = pro2.Fixture_Model_No__c;
|
id2.Internal_asset_location__c = cunFangDi;
|
id2.Inventory_Time__c = Date.toDay();
|
id2.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id3 = new Inventory_Detail__c();
|
id3.Asset__c = assetA3.Id;
|
id3.Amount__c = 9;
|
id3.WH_Location__c = assetA3.WH_location__c;
|
id3.OneToOne_Body__c = false;
|
id3.OneToOne_Accsessary__c = false;
|
id3.Asset_Status__c = '在库';
|
id3.Sync_Asset_Record_Flag__c = true;
|
id3.UniqueKey__c = header.Id+':'+pro3.Fixture_Model_No__c+':在库:'+null+':'+assetA3.Id;
|
id3.Fixture_Model_No__c = pro3.Fixture_Model_No__c;
|
id3.Internal_asset_location__c = cunFangDi;
|
id3.Inventory_Time__c = Date.toDay();
|
id3.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id4 = new Inventory_Detail__c();
|
id4.Asset__c = assetA3.Id;
|
id4.Amount__c = 1;
|
id4.WH_Location__c = assetA3.WH_location__c;
|
id4.OneToOne_Body__c = false;
|
id4.OneToOne_Accsessary__c = false;
|
id4.Asset_Status__c = '出借中';
|
id4.Sync_Asset_Record_Flag__c = false;
|
id4.UniqueKey__c = header.Id+':'+pro3.Fixture_Model_No__c+':出借中:'+null+':'+assetA3.Id;
|
id4.Fixture_Model_No__c = pro3.Fixture_Model_No__c;
|
id4.Internal_asset_location__c = cunFangDi;
|
id4.Inventory_Time__c = Date.toDay();
|
id4.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id5 = new Inventory_Detail__c();
|
id5.Asset__c = assetA2.Id;
|
id5.Amount__c = 7;
|
id5.WH_Location__c = assetA2.WH_location__c;
|
id5.OneToOne_Body__c = false;
|
id5.OneToOne_Accsessary__c = false;
|
id5.Asset_Status__c = '在库';
|
id5.Sync_Asset_Record_Flag__c = true;
|
id5.UniqueKey__c = header.Id+':'+pro2.Fixture_Model_No__c+':在库:'+null+':'+assetA2.Id;
|
id5.Fixture_Model_No__c = pro2.Fixture_Model_No__c;
|
id5.Internal_asset_location__c = cunFangDi;
|
id5.Inventory_Time__c = Date.toDay();
|
id5.Inventory_Header__c = header.Id;
|
|
Inventory_Detail__c id6 = new Inventory_Detail__c();
|
id6.Asset__c = assetA2.Id;
|
id6.Amount__c = 2;
|
id6.WH_Location__c = assetA2.WH_location__c;
|
id6.OneToOne_Body__c = false;
|
id6.OneToOne_Accsessary__c = false;
|
id6.Asset_Status__c = '冻结';
|
id6.Sync_Asset_Record_Flag__c = false;
|
id6.UniqueKey__c = header.Id+':'+pro2.Fixture_Model_No__c+':冻结:'+null+':'+assetA2.Id;
|
id6.Fixture_Model_No__c = pro2.Fixture_Model_No__c;
|
id6.Internal_asset_location__c = cunFangDi;
|
id6.Inventory_Time__c = Date.toDay();
|
id6.Inventory_Header__c = header.Id;
|
|
insert new Inventory_Detail__c[] {id1, id2, id3, id4, id5, id6};
|
}
|
/**
|
* 遗失报告草案中删除Error
|
*/
|
static testMethod void testMethod1() {
|
//add by rentx 20210609 start
|
LostReportHandler handler = new LostReportHandler();
|
handler.addFGL();
|
//add by rentx 20210609 end
|
bp3_Setting__c conf = bp3_Setting__c.getOrgDefaults();
|
conf.BJ_Start_Inventory_User__c = UserInfo.getUserId();
|
conf.InventoryDetailArchiveFolder__c = UserInfo.getUserId();
|
insert conf;
|
|
setupTestData();
|
|
//盘点表头
|
List<Inventory_Header__c> headerList = [select UniqueKey__c,Inventory_Start_Date__c,Internal_asset_location__c,Id from Inventory_Header__c];
|
System.assertEquals(1, headerList.size());
|
headerList[0].Inventory_Status__c = '已批准';
|
update headerList;
|
|
List<Inventory_Detail__c> retList = [SELECT Id
|
, Inventory_Count__c
|
FROM Inventory_Detail__c];
|
System.assertEquals(6, retList.size());
|
for (Inventory_Detail__c idobj : retList) {
|
idobj.Inventory_Count__c = 0;
|
}
|
update retList;
|
LostReport__c lrh = new LostReport__c();
|
lrh.Inventory_Header__c = headerList[0].Id;
|
lrh.Status__c = '草案中';
|
insert lrh;
|
List<LostReport_Detail__c> lrdList = new List<LostReport_Detail__c>();
|
for (Inventory_Detail__c idobj : retList) {
|
LostReport_Detail__c ld = new LostReport_Detail__c();
|
ld.Inventory_Detail__c = idobj.Id;
|
ld.LostReport__c = lrh.Id;
|
lrdList.add(ld);
|
}
|
insert lrdList;
|
lrdList = [SELECT Id, LostReport_Status_F__c
|
FROM LostReport_Detail__c];
|
System.assertEquals(6, lrdList.size());
|
|
String errorMessage = '';
|
try {
|
delete lrh;
|
}
|
catch (Exception e) {
|
errorMessage = e.getMessage();
|
}
|
// System.assert(String.isNotBlank(errorMessage), '不可以删除有遗失报告明细的草案中遗失报告。 的错误信息没有报错');
|
}
|
|
|
/**
|
* 遗失报告批准邮件
|
*/
|
static testMethod void testMethod2() {
|
bp3_Setting__c conf = bp3_Setting__c.getOrgDefaults();
|
conf.BJ_Start_Inventory_User__c = UserInfo.getUserId();
|
conf.InventoryDetailArchiveFolder__c = UserInfo.getUserId();
|
insert conf;
|
|
setupTestData();
|
|
//盘点表头
|
List<Inventory_Header__c> headerList = [select UniqueKey__c,Inventory_Start_Date__c,Internal_asset_location__c,Id from Inventory_Header__c];
|
System.assertEquals(1, headerList.size());
|
headerList[0].Inventory_Status__c = '已批准';
|
update headerList;
|
|
List<Inventory_Detail__c> retList = [SELECT Id
|
, Inventory_Count__c
|
FROM Inventory_Detail__c];
|
System.assertEquals(6, retList.size());
|
for (Inventory_Detail__c idobj : retList) {
|
idobj.Inventory_Count__c = 0;
|
}
|
update retList;
|
LostReport__c lrh = new LostReport__c();
|
lrh.Inventory_Header__c = headerList[0].Id;
|
lrh.Status__c = '草案中';
|
insert lrh;
|
List<LostReport_Detail__c> lrdList = new List<LostReport_Detail__c>();
|
for (Inventory_Detail__c idobj : retList) {
|
LostReport_Detail__c ld = new LostReport_Detail__c();
|
ld.Inventory_Detail__c = idobj.Id;
|
ld.LostReport__c = lrh.Id;
|
lrdList.add(ld);
|
}
|
insert lrdList;
|
|
lrh.Status__c = '已批准';
|
update lrh;
|
|
List<LostReport__c> lrList = [SELECT Id
|
, Email_Detail__c
|
FROM LostReport__c];
|
System.assertEquals(1, lrList.size());
|
|
|
// System.assert(String.isNotBlank(lrList[0].Email_Detail__c), '提交审批的时候邮件信息没更新');
|
}
|
|
|
/**
|
* 遗失报告提交审批共享确认
|
*/
|
static testMethod void testMethod3() {
|
// システム管理者
|
User user = new User(Test_staff__c = true);
|
user.LastName = '_サンブリッジ';
|
user.FirstName = 'う';
|
user.Alias = 'う';
|
user.Email = 'olympusTest03@sunbridge.com';
|
user.Username = 'olympusTest03@sunbridge.com';
|
user.CommunityNickname = 'う';
|
user.IsActive = true;
|
user.EmailEncodingKey = 'ISO-2022-JP';
|
user.TimeZoneSidKey = 'Asia/Tokyo';
|
user.LocaleSidKey = 'ja_JP';
|
user.LanguageLocaleKey = 'ja';
|
user.ProfileId = System.Label.ProfileId_SystemAdmin;
|
user.Province__c = '北京';
|
user.Dept__c = '医疗华北营业本部';
|
user.Use_Start_Date__c = Date.today().addMonths(-6);
|
user.JingliApprovalManager__c = UserInfo.getUserId();
|
user.JingliEquipmentManager__c = UserInfo.getUserId();
|
user.SalesManager__c = UserInfo.getUserId();
|
user.BuchangApprovalManager__c = UserInfo.getUserId();
|
user.Buzhang_Equipment_Manager__c = UserInfo.getUserId();
|
user.BuchangApprovalManagerSales__c = UserInfo.getUserId();
|
insert user;
|
|
System.runAs(user) {
|
|
bp3_Setting__c conf = bp3_Setting__c.getOrgDefaults();
|
conf.BJ_Start_Inventory_User__c = UserInfo.getUserId();
|
conf.InventoryDetailArchiveFolder__c = UserInfo.getUserId();
|
insert conf;
|
|
setupTestData();
|
|
//盘点表头
|
List<Inventory_Header__c> headerList = [select UniqueKey__c,Inventory_Start_Date__c,Internal_asset_location__c,Id from Inventory_Header__c];
|
System.assertEquals(1, headerList.size());
|
headerList[0].Inventory_Status__c = '已批准';
|
update headerList;
|
|
List<Inventory_Detail__c> retList = [SELECT Id
|
, Inventory_Count__c
|
FROM Inventory_Detail__c];
|
System.assertEquals(6, retList.size());
|
for (Inventory_Detail__c idobj : retList) {
|
idobj.Inventory_Count__c = 0;
|
}
|
update retList;
|
LostReport__c lrh = new LostReport__c();
|
lrh.Inventory_Header__c = headerList[0].Id;
|
lrh.Status__c = '草案中';
|
lrh.Situation_description__c = 'Test';
|
lrh.Confirmation_process__c = 'Test';
|
insert lrh;
|
List<LostReport_Detail__c> lrdList = new List<LostReport_Detail__c>();
|
for (Inventory_Detail__c idobj : retList) {
|
LostReport_Detail__c ld = new LostReport_Detail__c();
|
ld.Inventory_Detail__c = idobj.Id;
|
ld.LostReport__c = lrh.Id;
|
lrdList.add(ld);
|
}
|
insert lrdList;
|
|
lrh.Status__c = '填写完毕';
|
update lrh;
|
|
// List<LostReport__Share> lrList = [SELECT Id
|
// FROM LostReport__Share];
|
// System.assert(lrList.size() > 0);
|
}
|
}
|
// 遗失报告明细删除后,状态变为取消提交
|
static testMethod void testMethod4() {
|
// システム管理者
|
User user = new User(Test_staff__c = true);
|
user.LastName = '_サンブリッジ';
|
user.FirstName = 'う';
|
user.Alias = 'う';
|
user.Email = 'olympusTest03@sunbridge.com';
|
user.Username = 'olympusTest03@sunbridge.com';
|
user.CommunityNickname = 'う';
|
user.IsActive = true;
|
user.EmailEncodingKey = 'ISO-2022-JP';
|
user.TimeZoneSidKey = 'Asia/Tokyo';
|
user.LocaleSidKey = 'ja_JP';
|
user.LanguageLocaleKey = 'ja';
|
user.ProfileId = System.Label.ProfileId_SystemAdmin;
|
user.Province__c = '北京';
|
user.Dept__c = '医疗华北营业本部';
|
user.Use_Start_Date__c = Date.today().addMonths(-6);
|
user.JingliApprovalManager__c = UserInfo.getUserId();
|
user.JingliEquipmentManager__c = UserInfo.getUserId();
|
user.SalesManager__c = UserInfo.getUserId();
|
user.BuchangApprovalManager__c = UserInfo.getUserId();
|
user.Buzhang_Equipment_Manager__c = UserInfo.getUserId();
|
user.BuchangApprovalManagerSales__c = UserInfo.getUserId();
|
insert user;
|
|
System.runAs(user) {
|
|
bp3_Setting__c conf = bp3_Setting__c.getOrgDefaults();
|
conf.BJ_Start_Inventory_User__c = UserInfo.getUserId();
|
conf.InventoryDetailArchiveFolder__c = UserInfo.getUserId();
|
insert conf;
|
|
setupTestData();
|
|
//盘点表头
|
List<Inventory_Header__c> headerList = [select UniqueKey__c,Inventory_Start_Date__c,Internal_asset_location__c,Id from Inventory_Header__c];
|
System.assertEquals(1, headerList.size());
|
headerList[0].Inventory_Status__c = '已批准';
|
update headerList;
|
|
List<Inventory_Detail__c> retList = [SELECT Id
|
, Inventory_Count__c
|
FROM Inventory_Detail__c];
|
System.assertEquals(6, retList.size());
|
for (Inventory_Detail__c idobj : retList) {
|
idobj.Inventory_Count__c = 0;
|
}
|
update retList;
|
LostReport__c lrh = new LostReport__c();
|
lrh.Inventory_Header__c = headerList[0].Id;
|
lrh.Status__c = '草案中';
|
lrh.Situation_description__c = 'Test';
|
lrh.Confirmation_process__c = 'Test';
|
insert lrh;
|
List<LostReport_Detail__c> lrdList = new List<LostReport_Detail__c>();
|
for (Inventory_Detail__c idobj : retList) {
|
LostReport_Detail__c ld = new LostReport_Detail__c();
|
ld.Inventory_Detail__c = idobj.Id;
|
ld.LostReport__c = lrh.Id;
|
lrdList.add(ld);
|
}
|
insert lrdList;
|
|
System.assertEquals(6, lrdList.size());
|
System.assertEquals(null, lrh.Cancel_Time__c);
|
|
//update by rentx 2021-05-14 start 1635
|
// LostReportHandler.Loaner_AutoGiveup(null, lrdList, null);
|
LostReportHandler.Loaner_AutoGiveup(null, lrdList, null, null);
|
//update by rentx 2021-05-14 end 1635
|
|
lrdList = [SELECT Id FROM LostReport_Detail__c WHERE LostReport__c=:lrh.Id];
|
lrh = [SELECT Status__c, Cancel_Time__c FROM LostReport__c];
|
System.assertEquals(0, lrdList.size());
|
System.assertEquals('取消',lrh.Status__c);
|
System.assertNotEquals(null,lrh.Status__c);
|
}
|
}
|
|
}
|