@Istest
|
public class MaintanceContractPackHandlerTest {
|
private static Id pricebookId = ControllerUtil.getStandardPricebook().Id;
|
static Asset createAsset(String input, String accountid, String dcId, String hpId, String serialNo, String prId) {
|
Asset asset = new Asset();
|
asset.Name = input;
|
asset.AccountId = accountid;
|
asset.Department_Class__c = dcId;
|
asset.Hospital__c = hpId;
|
asset.SerialNumber = serialNo;
|
asset.Product2Id = prId;
|
insert asset;
|
return asset;
|
}
|
@isTest
|
static void testAfterUpdate() {
|
User thisUser = [select Id from User where Id = '00510000000gmxH'];
|
System.runAs ( thisUser ){
|
// 病院を作る
|
Account hospital = new Account();
|
hospital.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'].id;
|
hospital.Name = 'test hospital';
|
insert hospital;
|
|
// 戦略科室を得る
|
List<Account> strategicDep = [SELECT ID, Name FROM Account WHERE parentId = :hospital.Id AND recordType.DeveloperName = 'Department_Class_GI'];
|
|
// 診療科を作る
|
Account dep = new Account();
|
dep.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'Department_GI'].id;
|
dep.Name = 'test dep';
|
dep.ParentId = strategicDep[0].Id;
|
dep.Department_Class__c = strategicDep[0].Id;
|
dep.Hospital__c = hospital.Id;
|
insert dep;
|
|
// 製品を作る
|
Product2 productA = new Product2( Name='テスト商品', Maintenance_Price_Year__c = 12000, Manual_Entry__c = false);
|
insert productA;
|
Product2 productB = new Product2( Name='テスト商品123456789012345', Maintenance_Price_Year__c = 12000, Manual_Entry__c = false);
|
insert productB;
|
|
// 価格表エントリを作成する
|
PricebookEntry entry = new PricebookEntry( Pricebook2Id=pricebookId, Product2Id=productA.Id);
|
entry.UnitPrice = 0;
|
entry.IsActive = true;
|
entry.UseStandardPrice = false;
|
entry.CurrencyIsoCode = 'CNY';
|
entry.Product2Id = productA.Id;
|
insert entry;
|
PricebookEntry entry2 = new PricebookEntry( Pricebook2Id=pricebookId, Product2Id=productB.Id);
|
entry2.UnitPrice = 0;
|
entry2.IsActive = true;
|
entry2.UseStandardPrice = false;
|
entry2.CurrencyIsoCode = 'CNY';
|
entry2.Product2Id = productB.Id;
|
insert entry2;
|
|
// 納入機器を作成する
|
Asset asset01 = createAsset('asset:01', dep.Id, strategicDep[0].Id, hospital.Id, '00001', productA.Id);
|
Asset asset02 = createAsset('asset:02', dep.Id, strategicDep[0].Id, hospital.Id, '00002', productB.Id);
|
Asset asset03 = createAsset('asset:03', dep.Id, strategicDep[0].Id, hospital.Id, '00003', productA.Id);
|
Asset asset04 = createAsset('asset:04', dep.Id, strategicDep[0].Id, hospital.Id, '00004', productA.Id);
|
Asset asset05 = createAsset('asset:05', dep.Id, strategicDep[0].Id, hospital.Id, '00005', productA.Id);
|
|
|
// 服务打包合同
|
MaintanceContractPack__c target01 = new MaintanceContractPack__c();
|
target01.Name = 'TestDBMC';
|
target01.SalesOfficeCode_selection__c = '北京RC';
|
target01.Contract_Type__c = '上限合同';
|
target01.Is_Standard_Contract__c = '是';
|
target01.Inspection_Time__c = '1';
|
target01.Total_Payment_Time__c = '1';
|
target01.Term_Of_Payment__c = '多次付款';
|
target01.Contract_Start_Date__c = Date.today();
|
target01.Contract_End_Date__c = Date.today().addMonths(+12);
|
target01.URF_Contract__c = false;
|
target01.Contract_Range__c = Decimal.valueOf('12');
|
target01.Contract_Conclusion_Date__c = Date.today().addMonths(-12);
|
target01.Contract_print_completed__c = Date.today().addMonths(-12);
|
target01.OCM_Print_request__c = Date.today().addMonths(-12);
|
target01.one_off_payment_agreed_period__c = '15';
|
target01.HP_Dealer_print__c = Date.today().addMonths(-12);
|
target01.Submit_contract_to_Financial_dept__c = Date.today().addMonths(-12);
|
insert target01;
|
|
// 维修合同を作成する
|
Maintenance_Contract__c contract = new Maintenance_Contract__c();
|
contract.Name = 'tect contract';
|
contract.Hospital__c = hospital.Id;
|
contract.Department_Class__c = strategicDep[0].Id;
|
contract.Department__c = dep.Id;
|
contract.MaintanceContractPack__c = target01.Id;
|
insert contract;
|
System.debug('维修合同打印'+contract);
|
// 维修合同报价を作成する
|
Maintenance_Contract_Estimate__c contactEsti = new Maintenance_Contract_Estimate__c(
|
Name = 'BJ-RS-BJ0077008SX-01',
|
Maintenance_Contract__c = contract.Id,
|
Contract_Esti_Start_Date__c = Date.today(),
|
Contract_Start_Date__c = Date.today()
|
);
|
insert contactEsti;
|
|
MaintanceContractPackEstimate__c mtpE = new MaintanceContractPackEstimate__c(
|
Name = 'DB-2023-BJ000092-01',
|
Process_Status__c = '草案中',
|
Decide__c = true,
|
SalesDepartment__c='6.华南',
|
Maintenance_Contract_Estimate_TextArea__c = contactEsti.name,
|
Maintenance_Contract_Estimate__c = contactEsti.name,
|
MaintanceContractPack__c = target01.id
|
);
|
insert mtpE;
|
target01.Estimation_Id__c = mtpE.id;
|
update target01;
|
// 维修合同报价/保有设备を作成する
|
Maintenance_Contract_Asset_Estimate__c mcae1 = new Maintenance_Contract_Asset_Estimate__c(
|
Asset__c = asset01.Id,
|
Maintenance_Contract_Estimate__c = contactEsti.Id,
|
Comment__c = '一二三四五六七八九十一二三四五'
|
);
|
Maintenance_Contract_Asset_Estimate__c mcae2 = new Maintenance_Contract_Asset_Estimate__c(
|
Asset__c = asset02.Id,
|
Maintenance_Contract_Estimate__c = contactEsti.Id
|
);
|
Maintenance_Contract_Asset_Estimate__c mcae3 = new Maintenance_Contract_Asset_Estimate__c(
|
Asset__c = asset03.Id,
|
Maintenance_Contract_Estimate__c = contactEsti.Id,
|
Comment__c = '一二三四五六七八九十'
|
);
|
Maintenance_Contract_Asset_Estimate__c mcae4 = new Maintenance_Contract_Asset_Estimate__c(
|
Asset__c = asset04.Id,
|
Maintenance_Contract_Estimate__c = contactEsti.Id,
|
Comment__c = '一二三四五'
|
);
|
Maintenance_Contract_Asset_Estimate__c mcae5 = new Maintenance_Contract_Asset_Estimate__c(
|
Asset__c = asset05.Id,
|
Maintenance_Contract_Estimate__c = contactEsti.Id
|
);
|
insert new Maintenance_Contract_Asset_Estimate__c[] {mcae1, mcae2, mcae3, mcae4, mcae5};
|
target01.MC_approval_status__c = 'Draft';
|
update target01;
|
target01.MC_approval_status__c = 'Submit';
|
update target01;
|
target01.MC_approval_status__c = 'Draft';
|
update target01;
|
target01.MC_approval_status__c = 'Reject';
|
update target01;
|
target01.MC_approval_status__c = 'Pass';
|
update target01;
|
target01.Contract_Conclusion_Date__c = Date.today().addMonths(+12);
|
update target01;
|
}
|
}
|
}
|