source: branches/version-2_13-dev/data/class/pages/shopping/LC_Page_Shopping_Multiple.php @ 23605

Revision 23605, 14.5 KB checked in by kimoto, 10 years ago (diff)

#2448 typo修正・ソース整形・ソースコメントの改善 for 2.13.3

Scrutinizer Auto-Fixes

This patch was automatically generated as part of the following inspection:
 https://scrutinizer-ci.com/g/nobuhiko/EC-CUBE/inspections/d8722894-69a6-4b1b-898d-43618035c60d

Enabled analysis tools:

  • PHP Analyzer
  • PHP PDepend
  • PHP Similarity Analyzer
  • PHP Change Tracking Analyzer
  • 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-2014 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/LC_Page_Ex.php';
25
26/**
27 * お届け先の複数指定 のページクラス.
28 *
29 * @package Page
30 * @author LOCKON CO.,LTD.
31 * @version $Id$
32 */
33class LC_Page_Shopping_Multiple extends LC_Page_Ex
34{
35    /**
36     * Page を初期化する.
37     *
38     * @return void
39     */
40    public function init()
41    {
42        parent::init();
43        $this->tpl_title = 'お届け先の複数指定';
44        $this->httpCacheControl('nocache');
45    }
46
47    /**
48     * Page のプロセス.
49     *
50     * @return void
51     */
52    public function process()
53    {
54        parent::process();
55        $this->action();
56        $this->sendResponse();
57    }
58
59    /**
60     * Page のプロセス.
61     *
62     * @return void
63     */
64    public function action()
65    {
66        //決済処理中ステータスのロールバック
67        $objPurchase = new SC_Helper_Purchase_Ex();
68        $objPurchase->cancelPendingOrder(PENDING_ORDER_CANCEL_FLAG);
69
70        $objSiteSess = new SC_SiteSession_Ex();
71        $objCartSess = new SC_CartSession_Ex();
72        $objCustomer = new SC_Customer_Ex();
73        $objFormParam = new SC_FormParam_Ex();
74        $objAddress = new SC_Helper_Address_Ex();
75
76        // 複数配送先指定が無効な場合はエラー
77        if (USE_MULTIPLE_SHIPPING === false) {
78            SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, '', true);
79            SC_Response_Ex::actionExit();
80        }
81
82        $this->tpl_uniqid = $objSiteSess->getUniqId();
83
84        $this->addrs = $this->getDelivAddrs($objCustomer, $objPurchase, $objAddress);
85        $this->tpl_addrmax = count($this->addrs) - 2; // 「選択してください」と会員の住所をカウントしない
86        $this->lfInitParam($objFormParam);
87
88        $objPurchase->verifyChangeCart($this->tpl_uniqid, $objCartSess);
89
90        switch ($this->getMode()) {
91            case 'confirm':
92                $objFormParam->setParam($_POST);
93                $this->arrErr = $this->lfCheckError($objFormParam);
94                if (SC_Utils_Ex::isBlank($this->arrErr)) {
95                    // フォームの情報を一時保存しておく
96                    $_SESSION['multiple_temp'] = $objFormParam->getHashArray();
97                    $this->saveMultipleShippings($this->tpl_uniqid, $objFormParam,
98                                                 $objCustomer, $objPurchase,
99                                                 $objAddress);
100                    $objSiteSess->setRegistFlag();
101
102                    SC_Response_Ex::sendRedirect('payment.php');
103                    SC_Response_Ex::actionExit();
104                }
105                break;
106
107            default:
108                $this->setParamToSplitItems($objFormParam, $objCartSess);
109        }
110
111        // 前のページから戻ってきた場合
112        if ($_GET['from'] == 'multiple') {
113            $objFormParam->setParam($_SESSION['multiple_temp']);
114        }
115        $this->arrForm = $objFormParam->getFormParamList();
116    }
117
118    /**
119     * フォームを初期化する.
120     *
121     * @param  SC_FormParam $objFormParam SC_FormParam インスタンス
122     * @return void
123     */
124    public function lfInitParam(&$objFormParam)
125    {
126        $objFormParam->addParam('商品規格ID', 'product_class_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
127        $objFormParam->addParam('商品名', 'name');
128        $objFormParam->addParam('規格1', 'class_name1');
129        $objFormParam->addParam('規格2', 'class_name2');
130        $objFormParam->addParam('規格分類1', 'classcategory_name1');
131        $objFormParam->addParam('規格分類2', 'classcategory_name2');
132        $objFormParam->addParam('メイン画像', 'main_image');
133        $objFormParam->addParam('メイン一覧画像', 'main_list_image');
134        $objFormParam->addParam(SALE_PRICE_TITLE, 'price');
135        $objFormParam->addParam(SALE_PRICE_TITLE . '(税込)', 'price_inctax');
136        $objFormParam->addParam('数量', 'quantity', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'), 1);
137        $objFormParam->addParam('お届け先', 'shipping', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK'));
138        $objFormParam->addParam('カート番号', 'cart_no', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
139        $objFormParam->addParam('行数', 'line_of_num', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK'));
140    }
141
142    /**
143     * カートの商品を数量ごとに分割し, フォームに設定する.
144     *
145     * @param  SC_FormParam   $objFormParam SC_FormParam インスタンス
146     * @param  SC_CartSession $objCartSess  SC_CartSession インスタンス
147     * @return void
148     */
149    public function setParamToSplitItems(&$objFormParam, &$objCartSess)
150    {
151        $cartLists =& $objCartSess->getCartList($objCartSess->getKey());
152        $arrItems = array();
153        $index = 0;
154        foreach (array_keys($cartLists) as $key) {
155            $arrProductsClass = $cartLists[$key]['productsClass'];
156            $quantity = (int) $cartLists[$key]['quantity'];
157            for ($i = 0; $i < $quantity; $i++) {
158                foreach ($arrProductsClass as $key2 => $val) {
159                    $arrItems[$key2][$index] = $val;
160                }
161                $arrItems['quantity'][$index] = 1;
162                $arrItems['price'][$index] = $cartLists[$key]['price'];
163                $arrItems['price_inctax'][$index] = $cartLists[$key]['price_inctax'];
164                $index++;
165            }
166        }
167        $objFormParam->setParam($arrItems);
168        $objFormParam->setValue('line_of_num', $index);
169    }
170
171    /**
172     * 配送住所のプルダウン用連想配列を取得する.
173     *
174     * 会員ログイン済みの場合は, 会員登録住所及び追加登録住所を取得する.
175     * 非会員の場合は, 「お届け先の指定」画面で入力した住所を取得する.
176     *
177     * @param  SC_Customer        $objCustomer SC_Customer インスタンス
178     * @param  SC_Helper_Purchase $objPurchase SC_Helper_Purchase インスタンス
179     * @param SC_Helper_Address_Ex $objAddress
180     * @return array              配送住所のプルダウン用連想配列
181     */
182    public function getDelivAddrs(&$objCustomer, &$objPurchase, &$objAddress)
183    {
184        $masterData = new SC_DB_MasterData_Ex();
185        $arrPref = $masterData->getMasterData('mtb_pref');
186
187        $arrResults = array('' => '選択してください');
188        // 会員ログイン時
189        if ($objCustomer->isLoginSuccess(true)) {
190            $addr = array(
191                array(
192                    'other_deliv_id'    => NULL,
193                    'customer_id'       => $objCustomer->getValue('customer_id'),
194                    'name01'            => $objCustomer->getValue('name01'),
195                    'name02'            => $objCustomer->getValue('name02'),
196                    'kana01'            => $objCustomer->getValue('kana01'),
197                    'kana02'            => $objCustomer->getValue('kana02'),
198                    'zip01'             => $objCustomer->getValue('zip01'),
199                    'zip02'             => $objCustomer->getValue('zip02'),
200                    'pref'              => $objCustomer->getValue('pref'),
201                    'addr01'            => $objCustomer->getValue('addr01'),
202                    'addr02'            => $objCustomer->getValue('addr02'),
203                    'tel01'             => $objCustomer->getValue('tel01'),
204                    'tel02'             => $objCustomer->getValue('tel02'),
205                    'tel03'             => $objCustomer->getValue('tel03'),
206                )
207            );
208            $arrAddrs = array_merge($addr, $objAddress->getList($objCustomer->getValue('customer_id')));
209            foreach ($arrAddrs as $val) {
210                $other_deliv_id = SC_Utils_Ex::isBlank($val['other_deliv_id']) ? 0 : $val['other_deliv_id'];
211                $arrResults[$other_deliv_id] = $val['name01'] . $val['name02']
212                    . ' ' . $arrPref[$val['pref']] . $val['addr01'] . $val['addr02'];
213            }
214        // 非会員
215        } else {
216            $arrShippings = $objPurchase->getShippingTemp();
217            foreach ($arrShippings as $shipping_id => $val) {
218                $arrResults[$shipping_id] = $val['shipping_name01'] . $val['shipping_name02']
219                    . ' ' . $arrPref[$val['shipping_pref']]
220                    . $val['shipping_addr01'] . $val['shipping_addr02'];
221            }
222        }
223
224        return $arrResults;
225    }
226
227    /**
228     * 入力チェックを行う.
229     *
230     * @param  SC_FormParam $objFormParam SC_FormParam インスタンス
231     * @return array        エラー情報の配列
232     */
233    public function lfCheckError(&$objFormParam)
234    {
235        $objCartSess = new SC_CartSession_Ex();
236
237        $objFormParam->convParam();
238        // 数量未入力は0に置換
239        $objFormParam->setValue('quantity', $objFormParam->getValue('quantity', 0));
240
241        $arrErr = $objFormParam->checkError();
242
243        $arrParams = $objFormParam->getSwapArray();
244
245        if (empty($arrErr)) {
246            foreach ($arrParams as $index => $arrParam) {
247                // 数量0で、お届け先を選択している場合
248                if ($arrParam['quantity'] == 0 && !SC_Utils_Ex::isBlank($arrParam['shipping'])) {
249                    $arrErr['shipping'][$index] = '※ 数量が0の場合、お届け先を入力できません。<br />';;
250                }
251                // 数量の入力があり、お届け先を選択していない場合
252                if ($arrParam['quantity'] > 0 && SC_Utils_Ex::isBlank($arrParam['shipping'])) {
253                    $arrErr['shipping'][$index] = '※ お届け先が入力されていません。<br />';
254                }
255            }
256        }
257
258        // 入力エラーが無い場合、カゴの中身との数量の整合を確認
259        if (empty($arrErr)) {
260            $arrQuantity = array();
261            // 入力内容を集計
262            foreach ($arrParams as $arrParam) {
263                $product_class_id = $arrParam['product_class_id'];
264                $arrQuantity[$product_class_id] += $arrParam['quantity'];
265            }
266            // カゴの中身と突き合わせ
267            $cartLists =& $objCartSess->getCartList($objCartSess->getKey());
268            foreach ($cartLists as $arrCartRow) {
269                $product_class_id = $arrCartRow['id'];
270                // 差異がある場合、エラーを記録
271                if ($arrCartRow['quantity'] != $arrQuantity[$product_class_id]) {
272                    foreach ($arrParams as $index => $arrParam) {
273                        if ($arrParam['product_class_id'] == $product_class_id) {
274                            $arrErr['quantity'][$index] = '※ 数量合計を「' . $arrCartRow['quantity'] .'」にしてください。<br />';
275                        }
276                    }
277                }
278            }
279        }
280
281        return $arrErr;
282    }
283
284    /**
285     * 複数配送情報を一時保存する.
286     *
287     * 会員ログインしている場合は, その他のお届け先から住所情報を取得する.
288     *
289     * @param  integer            $uniqid       一時受注テーブルのユニークID
290     * @param  SC_FormParam       $objFormParam SC_FormParam インスタンス
291     * @param  SC_Customer        $objCustomer  SC_Customer インスタンス
292     * @param  SC_Helper_Purchase $objPurchase  SC_Helper_Purchase インスタンス
293     * @return void
294     */
295    public function saveMultipleShippings($uniqid, &$objFormParam, &$objCustomer, &$objPurchase, &$objAddress)
296    {
297        $arrParams = $objFormParam->getSwapArray();
298
299        foreach ($arrParams as $arrParam) {
300            $other_deliv_id = $arrParam['shipping'];
301
302            if ($objCustomer->isLoginSuccess(true)) {
303                if ($other_deliv_id != 0) {
304                    $otherDeliv = $objAddress->getAddress($other_deliv_id, $objCustomer->getValue('customer_id'));
305
306                    if (!$otherDeliv) {
307                        SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, "入力値が不正です。<br />正しい値を入力してください。");
308                        SC_Response_Ex::actionExit();
309                    }
310
311                    foreach ($otherDeliv as $key => $val) {
312                        $arrValues[$other_deliv_id]['shipping_' . $key] = $val;
313                    }
314                } else {
315                    $objPurchase->copyFromCustomer($arrValues[0], $objCustomer,
316                                                   'shipping');
317                }
318            } else {
319                $arrValues = $objPurchase->getShippingTemp();
320            }
321            $arrItemTemp[$other_deliv_id][$arrParam['product_class_id']] += $arrParam['quantity'];
322        }
323
324        $objPurchase->clearShipmentItemTemp();
325
326        foreach ($arrValues as $shipping_id => $arrVal) {
327            $objPurchase->saveShippingTemp($arrVal, $shipping_id);
328        }
329
330        foreach ($arrItemTemp as $other_deliv_id => $arrProductClassIds) {
331            foreach ($arrProductClassIds as $product_class_id => $quantity) {
332                if ($quantity == 0) continue;
333                $objPurchase->setShipmentItemTemp($other_deliv_id,
334                                                  $product_class_id,
335                                                  $quantity);
336            }
337        }
338
339        //不必要な配送先を削除
340        foreach ($_SESSION['shipping'] as $id=>$arrShipping) {
341            if (!isset($arrShipping['shipment_item'])) {
342                $objPurchase->unsetOneShippingTemp($id);
343            }
344        }
345
346        // $arrValues[0] には, 購入者の情報が格納されている
347        $objPurchase->saveOrderTemp($uniqid, $arrValues[0], $objCustomer);
348    }
349}
Note: See TracBrowser for help on using the repository browser.