高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
@isTest
private class UpdateInspectionReportAssetBatchTest {
    static testMethod void testMethod1() {
        ControllerUtil.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger2 = true;
 
        Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin];
        // ユーザー作成
        User hpOwner = new User(Test_staff__c = true, Job_Category__c='销售服务' ,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;
        // 取引先作成
        RecordType rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        RecordType rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 消化科'];
        Account hp = new Account(RecordTypeId = rectHp.Id, Name = 'InsReportPDFControllerTestHp1', OwnerId = hpOwner.Id);
        insert hp;
        Account section = [Select Id from Account where RecordType.Name = '戦略科室分類 消化科' and ParentId =: hp.Id];
        Account depart = new Account();
        depart.RecordTypeId = rectDpt.Id;
        depart.Name         = '*';
        depart.Department_Name__c  = 'HistoryTestDepart';
        depart.ParentId            = section.Id;
        depart.Department_Class__c = section.Id;
        depart.Hospital__c         = hp.Id;
        insert depart;
 
        Asset ass1 = new Asset(
            AccountId = depart.Id,
            Hospital__c = hp.Id,
            SerialNumber = 'lw0001',
            Name = '测试设备0001:aaaaa'
        );
        Asset ass2 = new Asset(
            AccountId = depart.Id,
            Hospital__c = hp.Id,
            SerialNumber = 'lw0002',
            Name = '测试设备0002:aaaaa'
        );
        insert new Asset[] {ass1, ass2};
 
        Inspection_Report__c ir0 = new Inspection_Report__c(Name = '*',
            Hospital__c = hp.Id,
            Reporter__c = hpOwner.id,
            Approved_date__c = Date.today().addDays(-1)
        );
        insert ir0;
 
        Inspection_Report__c ir1 = new Inspection_Report__c(Id = ir0.Id,
            Status__c = '批准'
        );
        update ir1;
 
        Inspection_Item__c ii0 = new Inspection_Item__c(
            Inspection_ReportId__c = ir0.Id,
            AssetId__c = ass1.Id
        );
        insert ii0;
        List<Inspection_Report__c> templist = [select id ,if_UpdateAsset__c from Inspection_Report__c where if_UpdateAsset__c = true];
 
        System.assertEquals(1,templist.size());
 
           System.Test.StartTest();
        Database.executeBatch(new UpdateInspectionReportAssetBatch(),1);
        System.Test.StopTest();
 
 
    }
    //2021-09-01   mzy  LJPH-C5Y5YD 【委托】合同前点检结果的实时带入 改为调用Batch来实现更新到保有设备 start
    static testMethod void testMethod2() {
        ControllerUtil.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger2 = true;
 
        Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin];
        // ユーザー作成
        User hpOwner = new User(Test_staff__c = true, Job_Category__c='销售服务' ,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;
        // 取引先作成
        RecordType rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        RecordType rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 消化科'];
        Account hp = new Account(RecordTypeId = rectHp.Id, Name = 'InsReportPDFControllerTestHp1', OwnerId = hpOwner.Id);
        insert hp;
        Account section = [Select Id from Account where RecordType.Name = '戦略科室分類 消化科' and ParentId =: hp.Id];
        Account depart = new Account();
        depart.RecordTypeId = rectDpt.Id;
        depart.Name         = '*';
        depart.Department_Name__c  = 'HistoryTestDepart';
        depart.ParentId            = section.Id;
        depart.Department_Class__c = section.Id;
        depart.Hospital__c         = hp.Id;
        insert depart;
 
        Asset ass1 = new Asset(
            AccountId = depart.Id,
            Hospital__c = hp.Id,
            SerialNumber = 'lw0001',
            Name = '测试设备0001:aaaaa'
        );
        Asset ass2 = new Asset(
            AccountId = depart.Id,
            Hospital__c = hp.Id,
            SerialNumber = 'lw0002',
            Name = '测试设备0002:aaaaa'
        );
        insert new Asset[] {ass1, ass2};
 
        Inspection_Report__c ir0 = new Inspection_Report__c(Name = '*',
            Hospital__c = hp.Id,
            Reporter__c = hpOwner.id,
            Approved_date__c = Date.today().addDays(-1)
        );
        insert ir0;
 
        Inspection_Item__c ii0 = new Inspection_Item__c(
            Inspection_ReportId__c = ir0.Id,
            AssetId__c = ass1.Id
        );
        insert ii0;
 
 
        Inspection_Report__c ir1 = new Inspection_Report__c(Id = ir0.Id,
            Status__c = '申请中'
        );
        update ir1;
 
 
        List<Inspection_Report__c> templist = [select id ,if_UpdateAsset__c from Inspection_Report__c ];
 
        System.assertEquals(1,templist.size());
 
        List<String> ids = new List<String>();
        ids.add(templist[0].Id);
        //System.assertEquals(null,ids);
 
        System.Test.StartTest();
        UpdateInspectionReportAssetBatch.updateAssetFun(ids);
        System.Test.StopTest();
 
 
    }
        static testMethod void testMethod2_2() {
        ControllerUtil.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001Trigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger = true;
        StaticParameter.EscapeNFM001AgencyContractTrigger2 = true;
 
        Profile p = [select Id from Profile where id =:System.Label.ProfileId_SystemAdmin];
        // ユーザー作成
        User hpOwner = new User(Test_staff__c = true, Job_Category__c='销售服务' ,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;
        // 取引先作成
        RecordType rectHp = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        RecordType rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 消化科'];
        Account hp = new Account(RecordTypeId = rectHp.Id, Name = 'InsReportPDFControllerTestHp1', OwnerId = hpOwner.Id);
        insert hp;
        Account section = [Select Id from Account where RecordType.Name = '戦略科室分類 消化科' and ParentId =: hp.Id];
        Account depart = new Account();
        depart.RecordTypeId = rectDpt.Id;
        depart.Name         = '*';
        depart.Department_Name__c  = 'HistoryTestDepart';
        depart.ParentId            = section.Id;
        depart.Department_Class__c = section.Id;
        depart.Hospital__c         = hp.Id;
        insert depart;
 
        Asset ass1 = new Asset(
            AccountId = depart.Id,
            Hospital__c = hp.Id,
            SerialNumber = 'lw0001',
            Name = '测试设备0001:aaaaa'
        );
        Asset ass2 = new Asset(
            AccountId = depart.Id,
            Hospital__c = hp.Id,
            SerialNumber = 'lw0002',
            Name = '测试设备0002:aaaaa'
        );
        insert new Asset[] {ass1, ass2};
 
        Inspection_Report__c ir0 = new Inspection_Report__c(Name = '*',
            Hospital__c = hp.Id,
            Reporter__c = hpOwner.id,
            Approved_date__c = Date.today().addDays(-1)
        );
        insert ir0;
 
        Inspection_Item__c ii0 = new Inspection_Item__c(
            Inspection_ReportId__c = ir0.Id,
            AssetId__c = ass1.Id
        );
        insert ii0;
 
        Inspection_Report__c ir1 = new Inspection_Report__c(Id = ir0.Id,
            Status__c = '批准'
        );
        update ir1;
 
 
        List<Inspection_Report__c> templist = [select id ,if_UpdateAsset__c from Inspection_Report__c where if_UpdateAsset__c = true];
 
        System.assertEquals(1,templist.size());
 
        List<String> ids = new List<String>();
        ids.add(templist[0].Id);
        //System.assertEquals(null,ids);
 
        System.Test.StartTest();
        UpdateInspectionReportAssetBatch.updateAssetFun(ids);
        System.Test.StopTest();
 
 
    }
    //2021-09-01   mzy  LJPH-C5Y5YD 【委托】合同前点检结果的实时带入 改为调用Batch来实现更新到保有设备 end
}