高章伟
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
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/**
 * 产品试用评价表PDFのコントローラです。
 */
public class BeforeOPDPDFExtensionController {
 
    /** 処理対象の見積オブジェクトのIDです。 */
    private Id targetId;
    private String pdfNo;
 
    /** 処理対象の見積オブジェクトです。 */
    private QuoteIrai__c irai;
    private Opportunity opp;
    private ConsumableSample__c cs;
    
    /** 1ページに表示する明細の数です。 */
    private Integer rowSize = 36;
 
    /** 最終ページに表示する明細の数です。 */
    private Integer lastRowSize = 24;
 
    /** 製品名を開業する文字数です。 */
    private Integer nameMax = 23;
 
    /** 印刷するページ数です。 */
    public Integer maxPageNumber { get; private set; }
 
    /** 印刷対象の見積の配下にある見積品目データです。 */
    public List<LineItemBean[]> printRecords { get; private set; }
    /**
     * 印刷するデータを格納するオブジェクを定義する、インナークラスです。
     */
    public class LineItemBean {
        public OpportunityLineItem oli { get; private set; }
        public QuoteIraiLineItem__c qli { get; private set; }
        public ConsumableSampleLineItem__c csli { get; private set; }
        
        public String productCode { get; private set; }
        public String productname { get; private set; }
        public Decimal quantity { get; private set; }
        
        public Decimal Packing_list_manual { get; private set; }
        
        public LineItemBean(OpportunityLineItem oli) {
            this.oli = oli;
            this.qli = null;
            this.csli = null;
            
            this.productCode = oli.ProductCode__c;
            this.productname = oli.Name__c;
            this.quantity = oli.Quantity;
        }
        
        public LineItemBean(QuoteIraiLineItem__c qli) {
            this.oli = null;
            this.qli = qli;
            this.csli = null;
            
            this.productCode = qli.ProductCode__c;
            this.productname = qli.Name__c;
            this.quantity = qli.Quantity__c;
        }
        
        public LineItemBean(ConsumableSampleLineItem__c csli) {
            this.oli = null;
            this.qli = null;
            this.csli = csli;
            
            this.productCode = csli.ProductCode__c;
            this.productname = csli.Name__c;
            this.quantity = csli.Quantity__c;
            this.Packing_list_manual = csli.Product2__r.Packing_list_manual__c;
            if (this.Packing_list_manual == null || this.Packing_list_manual <= 0) {
                this.Packing_list_manual = 1;
            }
        }
    }
 
    /**
     * 印刷するデータを格納するオブジェクトです。
     * ページ側は、このオブジェクト経由で印刷するデータにアクセスします。
     */
    public Parameters params { get; set; }
 
    /**
     * 印刷するデータを格納するオブジェクを定義する、インナークラスです。
     */
    public class Parameters {
        public String lineType { get; set; }
        public String sysNo { get; set; }
        public String hpName { get; set; }
        public String department { get; set; }
    }
 
    /**
     * コンストラクタです。
     * テスト用に作成しました。本来は不要です。
     */
    public BeforeOPDPDFExtensionController() {
        
    }
 
    /**
     * Visualforceページがアクセスするコンストラクタです。
     * 印刷するデータを収集し、インスタンス変数にセットします。
     * @param controller スタンダードコントローラーのインスタンス
     */
    public BeforeOPDPDFExtensionController(ApexPages.StandardController controller) {
        
    }
    
    /**
     * 契約内訳で、actionから呼ばれます。
     */    
    public void startContract() {
        this.params = new Parameters();
        this.rowSize = 37;
        this.lastRowSize = 37;
        this.nameMax = 35;
        // 見積依頼
        if (String.isBlank(ApexPages.currentPage().getParameters().get('qid')) == false) {
            this.targetId = ApexPages.currentPage().getParameters().get('qid');
            this.params.lineType = 'quo';
        }
        // 引合ボタン
        else if (String.isBlank(ApexPages.currentPage().getParameters().get('oid')) == false) {
            this.targetId = ApexPages.currentPage().getParameters().get('oid');
            this.params.lineType = 'opp';
        }
        // 消耗品
        else if (String.isBlank(ApexPages.currentPage().getParameters().get('csid')) == false) {
            this.targetId = ApexPages.currentPage().getParameters().get('csid');
            this.params.lineType = 'cs';
        }
        
        if (String.isBlank(ApexPages.currentPage().getParameters().get('pdfNo')) == false) {
            this.pdfNo = ApexPages.currentPage().getParameters().get('pdfNo');
        }
        
        this.mainProc(this.targetId);
    }
    
    /**
     * 主処理です。
     * @param quoteId 見積番号
     */
    private void mainProc(String id) {
        
        if (this.params.lineType == 'quo') {
            List<QuoteIrai__c> irais =  [SELECT Id, Account__r.Name, IraiSubject__c FROM QuoteIrai__c WHERE Id = :id];
            if (irais.size() > 0) {
                irai = irais[0];
            } else {
                return;
            }
        } else if (this.params.lineType == 'opp') {
            List<Opportunity> opps =  [SELECT Id, Hospital__r.Name, Department_Name__c FROM Opportunity WHERE Id = :id];
            if (opps.size() > 0) {
                opp = opps[0];
            } else {
                return;
            }
        } else if (this.params.lineType == 'cs') {
            List<ConsumableSample__c> css =  [SELECT Id, Contact__r.Hospital_name__c, Contact__r.Department__c FROM ConsumableSample__c WHERE Id = :id];
            if (css.size() > 0) {
                cs = css[0];
            } else {
                return;
            }
        }
        
        this.setQueryStringData();
        this.bindQuoteData(id);
        this.bindQuoteLineData();
    }
 
    /**
     * URLパラメータを取得して、インスタンス変数にセットします。
     */
    private void setQueryStringData() {
        try {
            String rawRowSize = ApexPages.currentPage().getParameters().get('rowSize');
            this.rowSize = rawRowSize != null ? Integer.valueOf(rawRowSize) : this.rowSize;
        }
        catch (Exception e) {
            
        }
    }
 
    /**
     * 見積データを、インスタンス変数にセットします。
     * @param quoteId 見積ID
     */
    private void bindQuoteData(String quoteId) {
        if (String.isBlank(this.pdfNo) == false) {
            this.params.sysNo = this.pdfNo;
        } else {
            this.params.sysNo = ControllerUtil.selectCommonSequence('EvaluationPDF_NextValue__c','EvaluationPDF_Format__c');
        }
        
        if (this.params.lineType == 'quo') {
            this.params.hpName = this.irai.Account__r.Name;
            this.params.department = this.irai.IraiSubject__c;
        } else if (this.params.lineType == 'opp') {
            this.params.hpName = this.opp.Hospital__r.Name;
            this.params.department = this.opp.Department_Name__c;
        } else if (this.params.lineType == 'cs') {
            this.params.hpName = this.cs.Contact__r.Hospital_name__c;
            this.params.department = this.cs.Contact__r.Department__c;
        }
    }
 
    /**
     * 見積品目データを取得して、インスタンス変数にセットします。
     */
    private void bindQuoteLineData(){
        this.maxPageNumber = 0;
        // 見積依頼
        if (this.params.lineType == 'quo') {
            String nowId = this.irai.Id;
            Integer repeatCount = null;
            String nowName = null, nowRightAsstModelNo = null;
            List<String> nameStringArray = null;
            QuoteIraiLineItem__c work = null;
            QuoteIraiLineItem__c[] itemsOrg = [SELECT id, ProductCode__c, Name__c, Quantity__c FROM QuoteIraiLineItem__c WHERE QuoteIrai__c = :nowId ORDER BY Item_Order__c ASC];
            QuoteIraiLineItem__c[] items = new List<QuoteIraiLineItem__c>();
            for (Integer i = 0; i < itemsOrg.size(); i++) {
                nowName = itemsOrg[i].Name__c == null ? '' : itemsOrg[i].Name__c;
                nowRightAsstModelNo = '';
                
                nameStringArray = new List<String>();
                repeatCount = (nowName.length() / nameMax) + (Math.mod(nowName.length(), nameMax) > 0 ? 1 : 0);
                for (Integer j = 0; j < repeatCount; j++) {
                    if ((j + 1) == repeatCount) {
                        nameStringArray.add(nowName.substring(j * nameMax));
                    }
                    else {
                        nameStringArray.add(nowName.substring(j * nameMax, (j+1) * nameMax));
                    }
                }
                for (Integer k = 0; k < nameStringArray.size(); k++) {
                    if (k == 0) {
                        work = itemsOrg[i];
                    }
                    else {
                        work = new QuoteIraiLineItem__c();
                    }
                    work.Name__c = nameStringArray[k];
                    items.add(work);
                }
            }
            
            printRecords = new List<LineItemBean[]>();
    
            LineItemBean[] pageItems = new LineItemBean[]{};
            Integer counter = 0;
            for (QuoteIraiLineItem__c c : items) {
    
                if (counter <= rowSize) {
                    pageItems.add(new LineItemBean(c));
                    counter++;
                }
                if (counter == rowSize) {
                    counter = 0;
                    printRecords.add(pageItems);
                    pageItems = new LineItemBean[]{};
                    this.maxPageNumber += 1;
                }
            }
            if (!pageItems.isEmpty()) {
                printRecords.add(pageItems);
                this.maxPageNumber += 1;
            }
            if (printRecords.size() > 0) {
                List<LineItemBean> lastList = printRecords[printRecords.size()-1];
                if (lastList.size() > lastRowSize) {
                    printRecords.add(new List<LineItemBean>());
                    this.maxPageNumber += 1;
                }
            }
        }
        // 引合ボタン
        else if (this.params.lineType == 'opp') {
            String nowId = this.opp.Id;
            Integer repeatCount = null;
            String nowName = null, nowRightAsstModelNo = null;
            List<String> nameStringArray = null;
            OpportunityLineItem work = null;
            OpportunityLineItem[] itemsOrg = [SELECT id, ProductCode__c, Name__c, Quantity FROM OpportunityLineItem WHERE OpportunityId = :nowId ORDER BY Item_Order__c ASC];
            OpportunityLineItem[] items = new List<OpportunityLineItem>();
            for (Integer i = 0; i < itemsOrg.size(); i++) {
                nowName = itemsOrg[i].Name__c == null ? '' : itemsOrg[i].Name__c;
                nowRightAsstModelNo = '';
                
                nameStringArray = new List<String>();
                repeatCount = (nowName.length() / nameMax) + (Math.mod(nowName.length(), nameMax) > 0 ? 1 : 0);
                for (Integer j = 0; j < repeatCount; j++) {
                    if ((j + 1) == repeatCount) {
                        nameStringArray.add(nowName.substring(j * nameMax));
                    }
                    else {
                        nameStringArray.add(nowName.substring(j * nameMax, (j+1) * nameMax));
                    }
                }
                for (Integer k = 0; k < nameStringArray.size(); k++) {
                    if (k == 0) {
                        work = itemsOrg[i];
                    }
                    else {
                        work = new OpportunityLineItem();
                    }
                    work.Name__c = nameStringArray[k];
                    items.add(work);
                }
            }
            
            printRecords = new List<LineItemBean[]>();
    
            LineItemBean[] pageItems = new LineItemBean[]{};
            Integer counter = 0;
            for (OpportunityLineItem c : items) {
    
                if (counter <= rowSize) {
                    pageItems.add(new LineItemBean(c));
                    counter++;
                }
                if (counter == rowSize) {
                    counter = 0;
                    printRecords.add(pageItems);
                    pageItems = new LineItemBean[]{};
                    this.maxPageNumber += 1;
                }
            }
            if (!pageItems.isEmpty()) {
                printRecords.add(pageItems);
                this.maxPageNumber += 1;
            }
            if (printRecords.size() > 0) {
                List<LineItemBean> lastList = printRecords[printRecords.size()-1];
                if (lastList.size() > lastRowSize) {
                    printRecords.add(new List<LineItemBean>());
                    this.maxPageNumber += 1;
                }
            }
        }
        // 消耗品
        else if (this.params.lineType == 'cs') {
            String nowId = this.cs.Id;
            Integer repeatCount = null;
            String nowName = null, nowRightAsstModelNo = null;
            List<String> nameStringArray = null;
            ConsumableSampleLineItem__c work = null;
            ConsumableSampleLineItem__c[] itemsOrg = [SELECT id, ProductCode__c, Name__c, Quantity__c, Product2__r.Packing_list_manual__c FROM ConsumableSampleLineItem__c WHERE ConsumableSample__c = :nowId ORDER BY Item_Order__c ASC];
            ConsumableSampleLineItem__c[] items = new List<ConsumableSampleLineItem__c>();
            for (Integer i = 0; i < itemsOrg.size(); i++) {
                nowName = itemsOrg[i].Name__c == null ? '' : itemsOrg[i].Name__c;
                nowRightAsstModelNo = '';
                
                nameStringArray = new List<String>();
                repeatCount = (nowName.length() / nameMax) + (Math.mod(nowName.length(), nameMax) > 0 ? 1 : 0);
                for (Integer j = 0; j < repeatCount; j++) {
                    if ((j + 1) == repeatCount) {
                        nameStringArray.add(nowName.substring(j * nameMax));
                    }
                    else {
                        nameStringArray.add(nowName.substring(j * nameMax, (j+1) * nameMax));
                    }
                }
                for (Integer k = 0; k < nameStringArray.size(); k++) {
                    if (k == 0) {
                        work = itemsOrg[i];
                    }
                    else {
                        work = new ConsumableSampleLineItem__c();
                    }
                    work.Name__c = nameStringArray[k];
                    items.add(work);
                }
            }
            
            printRecords = new List<LineItemBean[]>();
    
            LineItemBean[] pageItems = new LineItemBean[]{};
            Integer counter = 0;
            for (ConsumableSampleLineItem__c c : items) {
    
                if (counter <= rowSize) {
                    pageItems.add(new LineItemBean(c));
                    counter++;
                }
                if (counter == rowSize) {
                    counter = 0;
                    printRecords.add(pageItems);
                    pageItems = new LineItemBean[]{};
                    this.maxPageNumber += 1;
                }
            }
            if (!pageItems.isEmpty()) {
                printRecords.add(pageItems);
                this.maxPageNumber += 1;
            }
            if (printRecords.size() > 0) {
                List<LineItemBean> lastList = printRecords[printRecords.size()-1];
                if (lastList.size() > lastRowSize) {
                    printRecords.add(new List<LineItemBean>());
                    this.maxPageNumber += 1;
                }
            }
        }
    }
    
}