李彤
2022-09-23 d79fcb2a960e8b0e18fe039d892f98187b08866d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@isTest
private class CommonUtilsTest {
    static testMethod void testMethod1() {
        //创建数据
        //招投标项目
        //创建招投标项目
        Tender_information__c Ten = new Tender_information__c();
        Ten.Name = '123456';
        Ten.ProjectId__c = '38_99df2844cf784982acdc61d00d7a7dbb';
 
        insert Ten;
        // 省
        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;
 
        //查询  医院下的科室 包括战略和普通科室
        CommonUtils.GetYYChilders('test',hospital.Id);
         //查询  普通科室
        List<String> hospitals = new List<String>();
        hospitals.add(hospital.Id);
        CommonUtils.GetPTKS('test',hospitals,false);
        //查询  普通科室
        // CommonUtils.GetPTKSByYYParent('test',hospital.Id);
        //查询  战略科室
        String[] ids = new String[10];
        ids.Add('0011000000V97G7AAJ');
 
        CommonUtils.GetZLKS('test',ids);
        //查询 医院
        CommonUtils.GetYY(hospital.Name);
 
        CommonUtils.GetAccountPrentID(hospital.Id);
 
        //获取父节点
        CommonUtils.GetParent(dep.Id);
        //取得对象上的字段
        CommonUtils.GetSqlToPorps(PCLLostBrand__c.SObjectType);
        //获取选项列表值
        CommonUtils.GetSelectedValues( Tender_information__c.irrelevantReasons__c.getDescribe());
 
        // CommonUtils.getPicklistValues( 'PCLLostBrand__c','ProductClass__c','ProductCategory__c');
        CommonUtils.getPicklistValues( 'Tender_information__c','InfoType__c','subInfoType__c');
 
 
    }
}