source: branches/version-2_5-dev/data/class/SC_Fpdf.php @ 20435

Revision 20435, 13.7 KB checked in by nanasess, 13 years ago (diff)

#937(dtb_order_detail に主キーが無い)

  • dtb_order_detail.order_detail_id を作成
  • 受注詳細の並び順を order_detail_id に変更

#624(軽微な表示乱れを修正)

  • 受注完了のメッセージを修正
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23
24/*----------------------------------------------------------------------
25 * [名称] SC_Fpdf
26 * [概要] pdfファイルを表示する。
27 *----------------------------------------------------------------------
28 */
29
30require(DATA_REALDIR . 'module/fpdf/fpdf.php');
31require(DATA_REALDIR . 'module/fpdf/japanese.php');
32define('PDF_TEMPLATE_REALDIR', TEMPLATE_ADMIN_REALDIR . 'pdf/');
33
34class SC_Fpdf {
35    function SC_Fpdf($download, $title, $tpl_pdf = 'nouhinsyo1.pdf') {
36        // デフォルトの設定
37        $this->tpl_pdf = PDF_TEMPLATE_REALDIR . $tpl_pdf;  // テンプレートファイル
38        $this->pdf_download = $download;      // PDFのダウンロード形式(0:表示、1:ダウンロード)
39        $this->tpl_title = $title;
40        $this->tpl_dispmode = "real";      // 表示モード
41        $masterData = new SC_DB_MasterData_Ex();
42        $this->arrPref = $masterData->getMasterData('mtb_pref');
43        $this->width_cell = array(110.3,12,21.7,24.5);
44
45        $this->label_cell[] = $this->lfConvSjis("商品名 / 商品コード / [ 規格 ]");
46        $this->label_cell[] = $this->lfConvSjis("数量");
47        $this->label_cell[] = $this->lfConvSjis("単価");
48        $this->label_cell[] = $this->lfConvSjis("金額(税込)");
49
50        $this->arrMessage = array(
51            'このたびはお買上げいただきありがとうございます。',
52            '下記の内容にて納品させていただきます。',
53            'ご確認くださいますよう、お願いいたします。'
54        );
55
56        $this->pdf  = new PDF_Japanese();
57
58        // SJISフォント
59        $this->pdf->AddSJISFont();
60
61        //ページ総数取得
62        $this->pdf->AliasNbPages();
63
64        // マージン設定
65        $this->pdf->SetMargins(15, 20);
66
67        // PDFを読み込んでページ数を取得
68        $pageno = $this->pdf->setSourceFile($this->tpl_pdf);
69    }
70
71    function setData($arrData) {
72        $this->arrData = $arrData;
73
74        // ページ番号よりIDを取得
75        $tplidx = $this->pdf->ImportPage(1);
76
77        // ページを追加(新規)
78        $this->pdf->AddPage();
79
80        //表示倍率(100%)
81        $this->pdf->SetDisplayMode($this->tpl_dispmode);
82
83        if (SC_Utils_Ex::sfIsInt($arrData['order_id'])) {
84            $this->disp_mode = true;
85            $order_id = $arrData['order_id'];
86        }
87
88        // テンプレート内容の位置、幅を調整 ※useTemplateに引数を与えなければ100%表示がデフォルト
89        $this->pdf->useTemplate($tplidx);
90
91        $this->setShopData();
92        $this->setMessageData();
93        $this->setOrderData();
94        $this->setEtcData();
95
96    }
97
98    function setShopData() {
99        // ショップ情報
100
101        $objDb = new SC_Helper_DB_Ex();
102        $arrInfo = $objDb->sfGetBasisData();
103
104        $this->lfText(125, 60, $arrInfo['shop_name'], 8, 'B');          //ショップ名
105        $this->lfText(125, 63, $arrInfo['law_url'], 8);          //URL
106        $this->lfText(125, 68, $arrInfo['law_company'], 8);        //会社名
107        $text = "〒 ".$arrInfo['law_zip01']." - ".$arrInfo['law_zip02'];
108        $this->lfText(125, 71, $text, 8);  //郵便番号
109        $text = $this->arrPref[$arrInfo['law_pref']].$arrInfo['law_addr01'];
110        $this->lfText(125, 74, $text, 8);  //都道府県+住所1
111        $this->lfText(125, 77, $arrInfo['law_addr02'], 8);          //住所2
112
113        $text = "TEL: ".$arrInfo['law_tel01']."-".$arrInfo['law_tel02']."-".$arrInfo['law_tel03'];
114        //FAX番号が存在する場合、表示する
115        if (strlen($arrInfo['law_fax01']) > 0) {
116            $text .= " FAX: ".$arrInfo['law_fax01']."-".$arrInfo['law_fax02']."-".$arrInfo['law_fax03'];
117        }
118        $this->lfText(125, 80, $text, 8);  //TEL・FAX
119
120        if ( strlen($arrInfo['law_email']) > 0 ) {
121            $text = "Email: ".$arrInfo['law_email'];
122            $this->lfText(125, 83, $text, 8);      //Email
123        }
124
125        //ロゴ画像
126        $logo_file = PDF_TEMPLATE_REALDIR . 'logo.png';
127        $this->pdf->Image($logo_file, 124, 46, 40);
128    }
129
130    function setMessageData() {
131        // メッセージ
132        $this->lfText(27, 70, $this->arrData['msg1'], 8);  //メッセージ1
133        $this->lfText(27, 74, $this->arrData['msg2'], 8);  //メッセージ2
134        $this->lfText(27, 78, $this->arrData['msg3'], 8);  //メッセージ3
135        $text = "作成日: ".$this->arrData['year']."年".$this->arrData['month']."月".$this->arrData['day']."日";
136        $this->lfText(158, 288, $text, 8);  //作成日
137    }
138
139    function setOrderData() {
140        // DBから受注情報を読み込む
141        $this->lfGetOrderData($this->arrData['order_id']);
142
143        // 購入者情報
144        $text = "〒 ".$this->arrDisp['order_zip01']." - ".$this->arrDisp['order_zip02'];
145        $this->lfText(23, 43, $text, 10); //購入者郵便番号
146        $text = $this->arrPref[$this->arrDisp['order_pref']] . $this->arrDisp['order_addr01'];
147        $this->lfText(27, 47, $text, 10); //購入者都道府県+住所1
148        $this->lfText(27, 51, $this->arrDisp['order_addr02'], 10); //購入者住所2
149        $text = $this->arrDisp['order_name01']." ".$this->arrDisp['order_name02']." 様";
150        $this->lfText(27, 59, $text, 11); //購入者氏名
151
152        // お届け先情報
153        $this->pdf->SetFont('SJIS', '', 10);
154        $this->lfText(25, 125, SC_Utils_Ex::sfDispDBDate($this->arrDisp['create_date']), 10); //ご注文日
155        $this->lfText(25, 135, $this->arrDisp['order_id'], 10); //注文番号
156
157        $this->pdf->SetFont('SJIS', 'B', 15);
158        $this->pdf->Cell(0, 10, $this->lfConvSjis($this->tpl_title), 0, 2, 'C', 0, '');  //文書タイトル(納品書・請求書)
159        $this->pdf->Cell(0, 66, '', 0, 2, 'R', 0, '');
160        $this->pdf->Cell(5, 0, '', 0, 0, 'R', 0, '');
161        $this->pdf->Cell(67, 8, $this->lfConvSjis(number_format($this->arrDisp['payment_total'])." 円"), 0, 2, 'R', 0, '');
162        $this->pdf->Cell(0, 45, '', 0, 2, '', 0, '');
163
164        $this->pdf->SetFont('SJIS', '', 8);
165
166        $monetary_unit = $this->lfConvSjis("円");
167        $point_unit = $this->lfConvSjis("Pt");
168
169        // 購入商品情報
170        for ($i = 0; $i < count($this->arrDisp['quantity']); $i++) {
171
172            // 購入数量
173            $data[0] = $this->arrDisp['quantity'][$i];
174
175            // 税込金額(単価)
176            $data[1] = SC_Helper_DB_Ex::sfCalcIncTax($this->arrDisp['price'][$i]);
177
178            // 小計(商品毎)
179            $data[2] = $data[0] * $data[1];
180
181            $arrOrder[$i][0]  = $this->lfConvSjis($this->arrDisp['product_name'][$i]." / ");
182            $arrOrder[$i][0] .= $this->lfConvSjis($this->arrDisp['product_code'][$i]." / ");
183            if ($this->arrDisp['classcategory_name1'][$i]) {
184                $arrOrder[$i][0] .= $this->lfConvSjis(" [ ".$this->arrDisp['classcategory_name1'][$i]);
185                if ($this->arrDisp['classcategory_name2'][$i] == "") {
186                    $arrOrder[$i][0] .= " ]";
187                } else {
188                    $arrOrder[$i][0] .= $this->lfConvSjis(" * ".$this->arrDisp['classcategory_name2'][$i]." ]");
189                }
190            }
191            $arrOrder[$i][1]  = number_format($data[0]);
192            $arrOrder[$i][2]  = number_format($data[1]).$monetary_unit;
193            $arrOrder[$i][3]  = number_format($data[2]).$monetary_unit;
194
195        }
196
197        $arrOrder[$i][0] = "";
198        $arrOrder[$i][1] = "";
199        $arrOrder[$i][2] = "";
200        $arrOrder[$i][3] = "";
201
202        $i++;
203        $arrOrder[$i][0] = "";
204        $arrOrder[$i][1] = "";
205        $arrOrder[$i][2] = $this->lfConvSjis("商品合計");
206        $arrOrder[$i][3] = number_format($this->arrDisp['subtotal']).$monetary_unit;
207
208        $i++;
209        $arrOrder[$i][0] = "";
210        $arrOrder[$i][1] = "";
211        $arrOrder[$i][2] = $this->lfConvSjis("送料");
212        $arrOrder[$i][3] = number_format($this->arrDisp['deliv_fee']).$monetary_unit;
213
214        $i++;
215        $arrOrder[$i][0] = "";
216        $arrOrder[$i][1] = "";
217        $arrOrder[$i][2] = $this->lfConvSjis("手数料");
218        $arrOrder[$i][3] = number_format($this->arrDisp['charge']).$monetary_unit;
219
220        $i++;
221        $arrOrder[$i][0] = "";
222        $arrOrder[$i][1] = "";
223        $arrOrder[$i][2] = $this->lfConvSjis("値引き");
224        $arrOrder[$i][3] = "- ".number_format(($this->arrDisp['use_point'] * POINT_VALUE) + $this->arrDisp['discount']).$monetary_unit;
225
226        $i++;
227        $arrOrder[$i][0] = "";
228        $arrOrder[$i][1] = "";
229        $arrOrder[$i][2] = $this->lfConvSjis("請求金額");
230        $arrOrder[$i][3] = number_format($this->arrDisp['payment_total']).$monetary_unit;
231
232        // ポイント表記
233        if ($this->arrData['disp_point'] && $this->arrDisp['customer_id']) {
234            $i++;
235            $arrOrder[$i][0] = "";
236            $arrOrder[$i][1] = "";
237            $arrOrder[$i][2] = "";
238            $arrOrder[$i][3] = "";
239
240            $i++;
241            $arrOrder[$i][0] = "";
242            $arrOrder[$i][1] = "";
243            $arrOrder[$i][2] = $this->lfConvSjis("利用ポイント");
244            $arrOrder[$i][3] = number_format($this->arrDisp['use_point']).$point_unit;
245
246            $i++;
247            $arrOrder[$i][0] = "";
248            $arrOrder[$i][1] = "";
249            $arrOrder[$i][2] = $this->lfConvSjis("加算ポイント");
250            $arrOrder[$i][3] = number_format($this->arrDisp['add_point']).$point_unit;
251
252            $i++;
253            $arrOrder[$i][0] = "";
254            $arrOrder[$i][1] = "";
255            $arrOrder[$i][2] = $this->lfConvSjis("所有ポイント");
256            $arrOrder[$i][3] = number_format($this->arrDisp['point']).$point_unit;
257        }
258
259        $this->pdf->FancyTable($this->label_cell, $arrOrder, $this->width_cell);
260    }
261
262    function setEtcData() {
263        $this->pdf->Cell(0, 10, '', 0, 1, 'C', 0, '');
264        $this->pdf->SetFont('SJIS', '', 9);
265        $this->pdf->MultiCell(0, 6, $this->lfConvSjis("< 備 考 >"), 'T', 2, 'L', 0, '');  //備考
266        $this->pdf->Ln();
267        $this->pdf->SetFont('SJIS', '', 8);
268        $this->pdf->MultiCell(0, 4, $this->lfConvSjis($this->arrData['etc1']."\n".$this->arrData['etc2']."\n".$this->arrData['etc3']), '', 2, 'L', 0, '');  //備考
269    }
270
271    function createPdf() {
272        // PDFをブラウザに送信
273        ob_clean();
274        if ($this->pdf_download == 1) {
275            if ($this->pdf->PageNo() == 1) {
276                $filename = "nouhinsyo-No".$this->arrData['order_id'].".pdf";
277            } else {
278                $filename = "nouhinsyo.pdf";
279            }
280            $this->pdf->Output($this->lfConvSjis($filename), D);
281        } else {
282            $this->pdf->Output();
283        }
284
285        // 入力してPDFファイルを閉じる
286        $this->pdf->Close();
287    }
288
289    // PDF_Japanese::Text へのパーサー
290    function lfText($x, $y, $text, $size, $style = '') {
291        $text = mb_convert_encoding($text, "SJIS-win", CHAR_CODE);
292
293        $this->pdf->SetFont('SJIS', $style, $size);
294        $this->pdf->Text($x, $y, $text);
295    }
296
297    // 受注データの取得
298    function lfGetOrderData($order_id) {
299        if(SC_Utils_Ex::sfIsInt($order_id)) {
300            // DBから受注情報を読み込む
301            $objQuery = new SC_Query();
302            $where = "order_id = ?";
303            $arrRet = $objQuery->select("*", "dtb_order", $where, array($order_id));
304            $this->arrDisp = $arrRet[0];
305            list($point) = SC_Helper_Customer_Ex::sfGetCustomerPoint($order_id, $arrRet[0]['use_point'], $arrRet[0]['add_point']);
306            $this->arrDisp['point'] = $point;
307
308            // 受注詳細データの取得
309            $arrRet = $this->lfGetOrderDetail($order_id);
310            $arrRet = SC_Utils_Ex::sfSwapArray($arrRet);
311            $this->arrDisp = array_merge($this->arrDisp, $arrRet);
312
313            // その他支払い情報を表示
314            if($this->arrDisp["memo02"] != "") $this->arrDisp["payment_info"] = unserialize($this->arrDisp["memo02"]);
315            if($this->arrDisp["memo01"] == PAYMENT_CREDIT_ID){
316                  $this->arrDisp["payment_type"] = "クレジット決済";
317            } elseif ($this->arrDisp["memo01"] == PAYMENT_CONVENIENCE_ID) {
318                  $this->arrDisp["payment_type"] = "コンビニ決済";
319            } else {
320                  $this->arrDisp["payment_type"] = "お支払い";
321            }
322        }
323    }
324
325    // 受注詳細データの取得
326    function lfGetOrderDetail($order_id) {
327        $objQuery = new SC_Query();
328        $col = "product_id, product_class_id, product_code, product_name, classcategory_name1, classcategory_name2, price, quantity, point_rate";
329        $where = "order_id = ?";
330        $objQuery->setOrder("order_detail_id");
331        $arrRet = $objQuery->select($col, "dtb_order_detail", $where, array($order_id));
332        return $arrRet;
333    }
334
335    // 文字コードSJIS変換 -> japanese.phpで使用出来る文字コードはSJIS-winのみ
336    function lfConvSjis($conv_str) {
337        return (mb_convert_encoding($conv_str, "SJIS-win", CHAR_CODE));
338    }
339
340}
341?>
Note: See TracBrowser for help on using the repository browser.