buli
2022-04-26 5835379ec30b1667c4e522db9d294c9b7bb8633a
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
@isTest
private class NEWCreateSWOQuoteControllerTest {
    
    @TestSetup
    static void setup(){
        TestDataUtility.CreatePIPolicyConfigurations(new string[]{'Quotes__c','Contact'});
    }
    
    static testMethod void QuotesIdIsNull() {
 
        List<RecordType> rectIE = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = 'Customer IE'];
        List<RecordType> rectOpp = [select Id from RecordType where IsActive = true and SobjectType = 'Opportunity' and Name = 'SSBD'];
        Id pricebookId = Test.getStandardPricebookId();
        
        Pricebook2 pricebook = new Pricebook2(
            Name = 'IE',
            ProductSegment__c = 'IE',
            TradeType__c = 'Taxation',
            SalesChannel__c = 'direct',
            MachineParts__c = 'Machine',
            CurrencyIsoCode = 'CNY'
        );
        insert pricebook;
        
        Product2 product1 = new Product2();
        product1.Name = 'product1';
        product1.IsActive = true;
        product1.ProductCode = 'product1';
        product1.ProductStatus__c = '1';
        product1.NMPAStatus_one__c = 'Z1';
        product1.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product1.MaterialStatus_one_End__c = Date.today().addDays(22);
 
        insert product1;
 
        Product2 product2 = new Product2();
        product2.Name = 'Service Quote Labour';
        product2.IsActive = true;
        product2.ProductCode = 'Service Quote Labour';
        product2.ProductStatus__c = '1';
        product2.NMPAStatus_one__c = 'Z1';
        product2.SpecialProduct__c = true;
        product2.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product2.MaterialStatus_one_End__c = Date.today().addDays(22);
 
        insert product2;
 
        Product2 product3 = new Product2();
        product3.Name = 'Service Quote Subtotal';
        product3.IsActive = true;
        product3.ProductCode = 'Service Quote Subtotal';
        product3.ProductStatus__c = '1';
        product3.NMPAStatus_one__c = 'Z1';
        product3.SpecialProduct__c = true;
        product3.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product3.MaterialStatus_one_End__c = Date.today().addDays(22);
 
        insert product3;
 
 
        SWO__c swo = new SWO__c();
        swo.Name = 'Test';
        swo.QUANTITY__c = 22;
        swo.ITEM__c = product1.Id;
        swo.ESTIMATED_LABOUR_HOURS__c = 22;
        swo.LABOUR_RATE__c = 22;
        insert swo;
 
        RepairPart__c repairPart = new RepairPart__c();
        repairPart.SWO_ID__c = swo.Id;
        repairPart.Product__c = product1.Id;
        repairPart.QUANTITY__c = 22;
        insert repairPart;
 
 
        PageReference page = new PageReference('/apex/NEWCreateSWOQuote?swoId='+swo.Id);
        System.Test.setCurrentPage(page);
        NEWCreateSWOQuoteController controller = new NEWCreateSWOQuoteController();
        controller.init();
        controller.Save();    
    }
 
    static testMethod void QuotesIdIsNotNull() {
 
        List<RecordType> rectIE = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = 'Customer IE'];
        List<RecordType> rectOpp = [select Id from RecordType where IsActive = true and SobjectType = 'Opportunity' and Name = 'SSBD'];
        Id pricebookId = Test.getStandardPricebookId();
        
        Pricebook2 pricebook = new Pricebook2(
            Name = 'IE',
            ProductSegment__c = 'IE',
            TradeType__c = 'Taxation',
            SalesChannel__c = 'direct',
            MachineParts__c = 'Machine',
            CurrencyIsoCode = 'CNY'
        );
        insert pricebook;
        
        Product2 product1 = new Product2();
        product1.Name = 'DESCRIPTION';
        product1.IsActive = true;
        product1.ProductCode = 'DESCRIPTION';
        product1.ProductStatus__c = '1';
        product1.NMPAStatus_one__c = 'Z1';
        product1.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product1.MaterialStatus_one_End__c = Date.today().addDays(22);
 
        insert product1;
 
        Product2 product2 = new Product2();
        product2.Name = 'Payment Info';
        product2.IsActive = true;
        product2.ProductCode = 'Payment Info';
        product2.ProductStatus__c = '1';
        product2.NMPAStatus_one__c = 'Z1';
        product2.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product2.MaterialStatus_one_End__c = Date.today().addDays(22);
        product2.SpecialProduct__c = true;
        product2.Description = 'Test01;Test02';
 
        insert product2;
 
        Product2 product3 = new Product2();
        product3.Name = 'Service Quote Subtotal';
        product3.IsActive = true;
        product3.ProductCode = 'Service Quote Subtotal';
        product3.ProductStatus__c = '1';
        product3.NMPAStatus_one__c = 'Z1';
        product3.SpecialProduct__c = true;
        product3.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product3.MaterialStatus_one_End__c = Date.today().addDays(22);
 
        insert product3;
 
        SWO__c swo = new SWO__c();
        swo.Name = 'Test';
        swo.QUANTITY__c = 22;
        // swo.ITEM__c = product1.Id;
        swo.ESTIMATED_LABOUR_HOURS__c = 22;
        swo.LABOUR_RATE__c = 22;
        insert swo;
 
        Quotes__c quotes = new Quotes__c();
        quotes.SWO__c = swo.Id;
        quotes.QuotesType__c = '零件报价单';
        insert quotes;
 
        Quotes_item__c quotesItem =  new Quotes_item__c();
        quotesItem.QUOTE__c =  quotes.Id;
        quotesItem.QuotesItemProduct__c = product1.Id;
        insert quotesItem;
 
        Quotes_item__c quotesItem1 =  new Quotes_item__c();
        quotesItem1.QUOTE__c =  quotes.Id;
        quotesItem1.QuotesItemProduct__c = product2.Id;
        quotesItem1.DESCRIPTION__c = 'Test01;Test02';
        insert quotesItem1;
 
        Quotes_item__c quotesItem2 =  new Quotes_item__c();
        quotesItem2.QUOTE__c =  quotes.Id;
        quotesItem2.QuotesItemProduct__c = product3.Id;
        insert quotesItem2;
 
        
        PageReference page = new PageReference('/apex/NEWCreateSWOQuote?Id='+quotes.Id);
        System.Test.setCurrentPage(page);
        NEWCreateSWOQuoteController controller = new NEWCreateSWOQuoteController();
        controller.init();
        controller.Save(); 
 
 
    }
 
 
    static testMethod void QuotesSave() {
 
        List<RecordType> rectIE = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = 'Customer IE'];
        List<RecordType> rectOpp = [select Id from RecordType where IsActive = true and SobjectType = 'Opportunity' and Name = 'SSBD'];
        Id pricebookId = Test.getStandardPricebookId();
        
        Pricebook2 pricebook = new Pricebook2(
            Name = 'IE',
            ProductSegment__c = 'IE',
            TradeType__c = 'Taxation',
            SalesChannel__c = 'direct',
            MachineParts__c = 'Machine',
            CurrencyIsoCode = 'CNY'
        );
        insert pricebook;
        
        Product2 product1 = new Product2();
        product1.Name = 'DESCRIPTION';
        product1.IsActive = true;
        product1.ProductCode = 'DESCRIPTION';
        product1.ProductStatus__c = '1';
        product1.NMPAStatus_one__c = 'Z1';
        product1.SpecialProduct__c = true;
        product1.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product1.MaterialStatus_one_End__c = Date.today().addDays(22);
 
        insert product1;
 
        Product2 product2 = new Product2();
        product2.Name = 'Payment Info';
        product2.IsActive = true;
        product2.ProductCode = 'Payment Info';
        product2.ProductStatus__c = '1';
        product2.NMPAStatus_one__c = 'Z1';
        product2.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product2.MaterialStatus_one_End__c = Date.today().addDays(22);
        product2.SpecialProduct__c = true;
        product2.Description = 'Test01;Test02';
 
        insert product2;
 
        Product2 product3 = new Product2();
        product3.Name = 'Service Quote Subtotal';
        product3.IsActive = true;
        product3.ProductCode = 'Service Quote Subtotal';
        product3.ProductStatus__c = '1';
        product3.NMPAStatus_one__c = 'Z1';
        product3.SpecialProduct__c = true;
        product3.MaterialStatus_one_Start__c = Date.today().addDays(-22);
        product3.MaterialStatus_one_End__c = Date.today().addDays(22);
 
        insert product3;
 
        SWO__c swo = new SWO__c();
        swo.Name = 'Test';
        swo.QUANTITY__c = 22;
        // swo.ITEM__c = product1.Id;
        swo.ESTIMATED_LABOUR_HOURS__c = 22;
        swo.LABOUR_RATE__c = 22;
        insert swo;
 
        Quotes__c quotes = new Quotes__c();
        quotes.SWO__c = swo.Id;
        quotes.QuotesType__c = '零件报价单';
        quotes.DATE__c = Date.today();
        quotes.LEAD_TIME__c = '1 week';
        quotes.STATUS__c = 'Qualifying';
        quotes.LOCATION__c = 'China - Service';
        quotes.TERMS__c = '1% 10 Net 30';
        quotes.EXPIRES__c = Date.today();
        quotes.EXP_CLOSE__c = Date.today();
        quotes.RATE__c = 333;
        quotes.ORDER_TYPE__c = 'LS Core Clinical';
 
        insert quotes;
 
        Quotes_item__c quotesItem =  new Quotes_item__c();
        quotesItem.QUOTE__c =  quotes.Id;
        quotesItem.QuotesItemProduct__c = product1.Id;
        quotesItem.QUANTITY__c = 22;
        quotesItem.AMOUNT__c = 22;
        quotesItem.RATE__c = 222;
        quotesItem.TAX_AMT__c = 222;
        insert quotesItem;
 
        Quotes_item__c quotesItem1 =  new Quotes_item__c();
        quotesItem1.QUOTE__c =  quotes.Id;
        quotesItem1.QuotesItemProduct__c = product2.Id;
        quotesItem1.DESCRIPTION__c = 'Test01;Test02';
        quotesItem1.QUANTITY__c = 22;
        quotesItem1.AMOUNT__c = 22;
        quotesItem1.RATE__c = 222;
        quotesItem1.TAX_AMT__c = 222;
        insert quotesItem1;
 
        Quotes_item__c quotesItem2 =  new Quotes_item__c();
        quotesItem2.QUOTE__c =  quotes.Id;
        quotesItem2.QuotesItemProduct__c = product3.Id;
        quotesItem2.QUANTITY__c = 22;
        quotesItem2.AMOUNT__c = 22;
        quotesItem2.RATE__c = 222;
        quotesItem2.TAX_AMT__c = 222;
        insert quotesItem2;
 
        Mail_Merge__c  mailMerge = new Mail_Merge__c(); 
        mailMerge.Quotes__c = quotes.Id;
        insert mailMerge;
        
        PageReference page = new PageReference('/apex/NEWCreateSWOQuote?Id='+quotes.Id);
        System.Test.setCurrentPage(page);
        NEWCreateSWOQuoteController controller = new NEWCreateSWOQuoteController();
        controller.init();
        controller.UnabletoEdit();
        controller.Editbtn();
        controller.Save(); 
 
 
 
    }
}