@isTest
|
private class PAEDecisionRecordTriggerTest {
|
public PAEDecisionRecordTriggerTest() {
|
|
}
|
|
private static Id pricebookId = ControllerUtil.getStandardPricebook().Id;
|
static Account createHospital( String hospitalName) {
|
StaticParameter.EscapeNFM001AgencyContractTrigger = true;
|
StaticParameter.EscapeNFM001Trigger = true;
|
// 病院を作る
|
Account hospital = new Account();
|
hospital.recordtypeId = [Select Id FROM RecordType WHERE DeveloperName = 'HP'].id;
|
hospital.Name = hospitalName;
|
insert hospital;
|
StaticParameter.EscapeAccountTrigger = true;
|
return hospital;
|
}
|
|
static List<Account> selectStrategicDep( Account hospital) {
|
// 戦略科室を得る
|
List<Account> strategicDep = [SELECT ID, Name FROM Account WHERE parentId = :hospital.Id AND recordType.DeveloperName = 'Department_Class_GI'];
|
return strategicDep;
|
}
|
|
static Account createDep( Account hospital, Account strategicDep) {
|
// 診療科を作る
|
Account dep = new Account();
|
dep.recordtypeId = [Select Id FROM RecordType WHERE DeveloperName = 'Department_GI'].id;
|
dep.Name = 'test dep';
|
dep.ParentId = strategicDep.Id;
|
dep.Department_Class__c = strategicDep.Id;
|
dep.Hospital__c = hospital.Id;
|
// dep.State_Text__c = '上海市';
|
insert dep;
|
return dep;
|
}
|
|
static Asset createAsset( Account hospital, Account strategicDep, Account dep) {
|
// 製品を作る
|
Product2 productA = new Product2( Name = 'テスト商品');
|
insert productA;
|
|
// 価格表エントリを作成する
|
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;
|
|
// 納入機器を作成する
|
Asset asset = new Asset();
|
asset.Name = 'テスト機器';
|
asset.AccountId = dep.Id;
|
asset.Department_Class__c = strategicDep.Id;
|
asset.Hospital__c = hospital.Id;
|
asset.SerialNumber = 'testserial';
|
asset.Quantity = 3;
|
// asset.Extend_Gurantee_DateTo_Text__c =Date.today().addDays(30);
|
// asset.IS_Extend_Gurantee_Txt__c =true;
|
// asset.Order_No__c = 'BJ_2020';
|
|
insert asset;
|
|
return asset;
|
}
|
|
@isTest
|
static void myTest(){
|
|
ControllerUtil.EscapeNFM001Trigger = true;
|
|
// 病院、戦略科室、診療科の情報を作成します
|
Account hospital = createHospital( 'test hospital');
|
Account[] strategicDep = selectStrategicDep( hospital);
|
Account dep = createDep( hospital, strategicDep[0]);
|
|
// 納入機器を作る
|
Asset asset = createAsset( hospital, strategicDep[0], dep);
|
|
// 修理を作成する01
|
Repair__c re = new Repair__c();
|
re.SAPRepairNo__c = '000010168255';
|
re.Account__c = dep.Id;
|
re.Department_Class__c = strategicDep[0].Id;
|
re.Hospital__c = hospital.Id;
|
re.Delivered_Product__c = asset.Id;
|
re.SERVICE_CONTRACT_JUDEGE_DAY__C = Date.today().addDays( -1000); // 维修合同判断日がサービス契約のだいぶ前
|
re.Failure_Occurrence_Date__c = Date.today();
|
re.InspectionCategory_Three__c = '3';
|
re.IISE_Inspection_Branch_Three__c = '1';
|
insert re;
|
|
PAE_DecisionRecord__c record = new PAE_DecisionRecord__c(
|
PAE_DetermineResults__c = 'nonPAE', // PAE判定结果
|
PAE_ConfirmationDate__c = Date.valueOf('2020-05-06'), // OCSM QARA确认日
|
PAE_Authenticator__c = '00510000005sEEM' // OCSM QARA确认者
|
);
|
record.PAE_Repair__c = re.Id;
|
record.RecordTypeId = Schema.SObjectType.PAE_DecisionRecord__c.getRecordTypeInfosByDeveloperName().get('ASACDecision').getRecordTypeId();
|
record.PAE_DetermineResults_Text__c = 'nonPAE';
|
insert record;
|
|
record.PAE_DetermineResults_Text__c = 'PAE';
|
update record;
|
|
List<PAE_DecisionRecord__c> recordList = [select id,name,PAE_DetermineResults_Text__c from PAE_DecisionRecord__c];
|
System.debug('recordList++'+recordList);
|
|
}
|
|
}
|