source: branches/version-2_13-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php @ 22856

Revision 22856, 8.5 KB checked in by Seasoft, 11 years ago (diff)

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
  • 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-2013 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
24require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php';
25
26/**
27 * 帳票出力 のページクラス.
28 *
29 * @package Page
30 * @author LOCKON CO.,LTD.
31 * @version $Id$
32 */
33class LC_Page_Admin_Order_Pdf extends LC_Page_Admin_Ex
34{
35    /**
36     * Page を初期化する.
37     *
38     * @return void
39     */
40    function init()
41    {
42        parent::init();
43        $this->tpl_mainpage = 'order/pdf_input.tpl';
44        $this->tpl_mainno = 'order';
45        $this->tpl_subno = 'pdf';
46        $this->tpl_maintitle = '受注管理';
47        $this->tpl_subtitle = '帳票出力';
48
49        $this->SHORTTEXT_MAX = STEXT_LEN;
50        $this->MIDDLETEXT_MAX = MTEXT_LEN;
51        $this->LONGTEXT_MAX = LTEXT_LEN;
52
53        $this->arrType[0]  = '納品書';
54
55        $this->arrDownload[0] = 'ブラウザに開く';
56        $this->arrDownload[1] = 'ファイルに保存';
57    }
58
59    /**
60     * Page のプロセス.
61     *
62     * @return void
63     */
64    function process()
65    {
66        $this->action();
67        $this->sendResponse();
68    }
69
70    /**
71     * Page のアクション.
72     *
73     * @return void
74     */
75    function action()
76    {
77        $objDb = new SC_Helper_DB_Ex();
78        $objDate = new SC_Date_Ex(1901);
79        $objDate->setStartYear(RELEASE_YEAR);
80        $this->arrYear = $objDate->getYear();
81        $this->arrMonth = $objDate->getMonth();
82        $this->arrDay = $objDate->getDay();
83
84        // パラメーター管理クラス
85        $this->objFormParam = new SC_FormParam_Ex();
86        // パラメーター情報の初期化
87        $this->lfInitParam($this->objFormParam);
88        $this->objFormParam->setParam($_POST);
89        // 入力値の変換
90        $this->objFormParam->convParam();
91
92        // どんな状態の時に isset($arrRet) == trueになるんだ? これ以前に$arrRet無いが、、、、
93        if (!isset($arrRet)) $arrRet = array();
94        switch ($this->getMode()) {
95            case 'confirm':
96
97                $status = $this->createPdf($this->objFormParam);
98                if ($status === true) {
99                    SC_Response_Ex::actionExit();
100                } else {
101                    $this->arrErr = $status;
102                }
103                break;
104            default:
105                $this->arrForm = $this->createFromValues($_GET['order_id'],$_POST['pdf_order_id']);
106                break;
107        }
108        $this->setTemplate($this->tpl_mainpage);
109
110    }
111
112    /**
113     *
114     * PDF作成フォームのデフォルト値の生成
115     */
116    function createFromValues($order_id,$pdf_order_id)
117    {
118        // ここが$arrFormの初登場ということを明示するため宣言する。
119        $arrForm = array();
120        // タイトルをセット
121        $arrForm['title'] = 'お買上げ明細書(納品書)';
122
123        // 今日の日付をセット
124        $arrForm['year']  = date('Y');
125        $arrForm['month'] = date('m');
126        $arrForm['day']   = date('d');
127
128        // メッセージ
129        $arrForm['msg1'] = 'このたびはお買上げいただきありがとうございます。';
130        $arrForm['msg2'] = '下記の内容にて納品させていただきます。';
131        $arrForm['msg3'] = 'ご確認くださいますよう、お願いいたします。';
132
133        // 注文番号があったら、セットする
134        if (SC_Utils_Ex::sfIsInt($order_id)) {
135            $arrForm['order_id'][0] = $order_id;
136        } elseif (is_array($pdf_order_id)) {
137            sort($pdf_order_id);
138            foreach ($pdf_order_id AS $key=>$val) {
139                $arrForm['order_id'][] = $val;
140            }
141        }
142
143        return $arrForm;
144    }
145
146    /**
147     *
148     * PDFの作成
149     * @param SC_FormParam $objFormParam
150     */
151    function createPdf(&$objFormParam)
152    {
153        $arrErr = $this->lfCheckError($objFormParam);
154        $arrRet = $objFormParam->getHashArray();
155
156        $this->arrForm = $arrRet;
157        // エラー入力なし
158        if (count($arrErr) == 0) {
159            $objFpdf = new SC_Fpdf_Ex($arrRet['download'], $arrRet['title']);
160            foreach ($arrRet['order_id'] AS $key => $val) {
161                $arrPdfData = $arrRet;
162                $arrPdfData['order_id'] = $val;
163                $objFpdf->setData($arrPdfData);
164            }
165            $objFpdf->createPdf();
166            return true;
167        } else {
168            return $arrErr;
169        }
170    }
171
172    /**
173     * デストラクタ.
174     *
175     * @return void
176     */
177    function destroy()
178    {
179        parent::destroy();
180    }
181
182    /**
183     *  パラメーター情報の初期化
184     *  @param SC_FormParam
185     */
186    function lfInitParam(&$objFormParam)
187    {
188        $objFormParam->addParam('注文番号', 'order_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
189        $objFormParam->addParam('注文番号', 'pdf_order_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
190        $objFormParam->addParam('発行日', 'year', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
191        $objFormParam->addParam('発行日', 'month', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
192        $objFormParam->addParam('発行日', 'day', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
193        $objFormParam->addParam('帳票の種類', 'type', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
194        $objFormParam->addParam('ダウンロード方法', 'download', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
195        $objFormParam->addParam('帳票タイトル', 'title', STEXT_LEN, 'KVa', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
196        $objFormParam->addParam('帳票メッセージ1行目', 'msg1', STEXT_LEN*3/5, 'KVa', array('MAX_LENGTH_CHECK'));
197        $objFormParam->addParam('帳票メッセージ2行目', 'msg2', STEXT_LEN*3/5, 'KVa', array('MAX_LENGTH_CHECK'));
198        $objFormParam->addParam('帳票メッセージ3行目', 'msg3', STEXT_LEN*3/5, 'KVa', array('MAX_LENGTH_CHECK'));
199        $objFormParam->addParam('備考1行目', 'etc1', STEXT_LEN, 'KVa', array('MAX_LENGTH_CHECK'));
200        $objFormParam->addParam('備考2行目', 'etc2', STEXT_LEN, 'KVa', array('MAX_LENGTH_CHECK'));
201        $objFormParam->addParam('備考3行目', 'etc3', STEXT_LEN, 'KVa', array('MAX_LENGTH_CHECK'));
202        $objFormParam->addParam('ポイント表記', 'disp_point', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK'));
203    }
204
205    /**
206     *  入力内容のチェック
207     *  @var SC_FormParam
208     */
209
210    function lfCheckError(&$objFormParam)
211    {
212        // 入力データを渡す。
213        $arrParams = $objFormParam->getHashArray();
214        $arrErr = $objFormParam->checkError();
215        $objError = new SC_CheckError_Ex($arrParams);
216
217        $year = $objFormParam->getValue('year');
218        if (!is_numeric($year)) {
219            $arrErr['year'] = '発行年は数値で入力してください。';
220        }
221
222        $month = $objFormParam->getValue('month');
223        if (!is_numeric($month)) {
224            $arrErr['month'] = '発行月は数値で入力してください。';
225        } else if (0 >= $month && 12 < $month) {
226            $arrErr['month'] = '発行月は1〜12の間で入力してください。';
227        }
228
229        $day = $objFormParam->getValue('day');
230        if (!is_numeric($day)) {
231            $arrErr['day'] = '発行日は数値で入力してください。';
232        } else if (0 >= $day && 31 < $day) {
233            $arrErr['day'] = '発行日は1〜31の間で入力してください。';
234        }
235
236        $objError->doFunc(array('発行日', 'year', 'month', 'day'), array('CHECK_DATE'));
237        $arrErr = array_merge($arrErr, $objError->arrErr);
238
239        return $arrErr;
240    }
241
242}
Note: See TracBrowser for help on using the repository browser.