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

Revision 22926, 6.3 KB checked in by Seasoft, 11 years ago (diff)

#2287 (環境によりデストラクタが正しく動作しないケースがある)
#2288 (リクエスト単位で実行されるべきログ出力がブロックにも適用されている)
#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 不明確な仕様にコメントを残した。
  • 親デストラクタを呼ぶだけの記述は可読性が悪くなると考え削除した。(上述のチケットで OS の仕様に依存したデストラクタとなるため、敢えてアプリケーション側で記述しておく意義は薄れたという認識のもと。)
  • 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/LC_Page_Ex.php';
25
26/**
27 * 入力内容確認のページクラス.
28 *
29 * @package Page
30 * @author LOCKON CO.,LTD.
31 * @version $Id$
32 */
33class LC_Page_Shopping_Confirm extends LC_Page_Ex
34{
35    /**
36     * Page を初期化する.
37     *
38     * @return void
39     */
40    function init()
41    {
42        parent::init();
43        $this->tpl_title = 'ご入力内容のご確認';
44        $masterData = new SC_DB_MasterData_Ex();
45        $this->arrPref = $masterData->getMasterData('mtb_pref');
46        $this->arrSex = $masterData->getMasterData('mtb_sex');
47        $this->arrMAILMAGATYPE = $masterData->getMasterData('mtb_mail_magazine_type');
48        $this->arrReminder = $masterData->getMasterData('mtb_reminder');
49        $this->arrDeliv = SC_Helper_Delivery_Ex::getIDValueList('service_name');
50        $this->httpCacheControl('nocache');
51    }
52
53    /**
54     * Page のプロセス.
55     *
56     * @return void
57     */
58    function process()
59    {
60        parent::process();
61        $this->action();
62        $this->sendResponse();
63    }
64
65    /**
66     * Page のアクション.
67     *
68     * @return void
69     */
70    function action()
71    {
72        $objCartSess = new SC_CartSession_Ex();
73        $objSiteSess = new SC_SiteSession_Ex();
74        $objCustomer = new SC_Customer_Ex();
75        $objPurchase = new SC_Helper_Purchase_Ex();
76        $objHelperMail = new SC_Helper_Mail_Ex();
77
78        $this->is_multiple = $objPurchase->isMultiple();
79
80        // 前のページで正しく登録手続きが行われた記録があるか判定
81        if (!$objSiteSess->isPrePage()) {
82            SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, $objSiteSess);
83        }
84
85        // ユーザユニークIDの取得と購入状態の正当性をチェック
86        $this->tpl_uniqid = $objSiteSess->getUniqId();
87        $objPurchase->verifyChangeCart($this->tpl_uniqid, $objCartSess);
88
89        $this->cartKey = $objCartSess->getKey();
90
91        // カート内商品のチェック
92        $this->tpl_message = $objCartSess->checkProducts($this->cartKey);
93        if (!SC_Utils_Ex::isBlank($this->tpl_message)) {
94            SC_Response_Ex::sendRedirect(CART_URLPATH);
95            SC_Response_Ex::actionExit();
96        }
97
98        // カートの商品を取得
99        $this->arrShipping = $objPurchase->getShippingTemp($this->is_multiple);
100        $this->arrCartItems = $objCartSess->getCartList($this->cartKey);
101        // 合計金額
102        $this->tpl_total_inctax[$this->cartKey] = $objCartSess->getAllProductsTotal($this->cartKey);
103        // 税額
104        $this->tpl_total_tax[$this->cartKey] = $objCartSess->getAllProductsTax($this->cartKey);
105        // ポイント合計
106        $this->tpl_total_point[$this->cartKey] = $objCartSess->getAllProductsPoint($this->cartKey);
107
108        // 一時受注テーブルの読込
109        $arrOrderTemp = $objPurchase->getOrderTemp($this->tpl_uniqid);
110
111        // カート集計を元に最終計算
112        $arrCalcResults = $objCartSess->calculate($this->cartKey, $objCustomer,
113                                                  $arrOrderTemp['use_point'],
114                                                  $objPurchase->getShippingPref($this->is_multiple),
115                                                  $arrOrderTemp['charge'],
116                                                  $arrOrderTemp['discount'],
117                                                  $arrOrderTemp['deliv_id']);
118        $this->arrForm = array_merge($arrOrderTemp, $arrCalcResults);
119
120        // 会員ログインチェック
121        if ($objCustomer->isLoginSuccess(true)) {
122            $this->tpl_login = '1';
123            $this->tpl_user_point = $objCustomer->getValue('point');
124        }
125
126        // 決済モジュールを使用するかどうか
127        $this->use_module = SC_Helper_Payment_Ex::useModule($this->arrForm['payment_id']);
128
129        switch ($this->getMode()) {
130            // 前のページに戻る
131            case 'return':
132                // 正常な推移であることを記録しておく
133                $objSiteSess->setRegistFlag();
134
135                SC_Response_Ex::sendRedirect(SHOPPING_PAYMENT_URLPATH);
136                SC_Response_Ex::actionExit();
137                break;
138            case 'confirm':
139                /*
140                 * 決済モジュールで必要なため, 受注番号を取得
141                 */
142                $this->arrForm['order_id'] = $objPurchase->getNextOrderID();
143                $_SESSION['order_id'] = $this->arrForm['order_id'];
144
145                // 集計結果を受注一時テーブルに反映
146                $objPurchase->saveOrderTemp($this->tpl_uniqid, $this->arrForm,
147                                            $objCustomer);
148
149                // 正常に登録されたことを記録しておく
150                $objSiteSess->setRegistFlag();
151
152                // 決済モジュールを使用する場合
153                if ($this->use_module) {
154                    $objPurchase->completeOrder(ORDER_PENDING);
155
156                    SC_Response_Ex::sendRedirect(SHOPPING_MODULE_URLPATH);
157                }
158                // 購入完了ページ
159                else {
160                    $objPurchase->completeOrder(ORDER_NEW);
161                    SC_Helper_Purchase_Ex::sendOrderMail($this->arrForm['order_id']);
162
163                    SC_Response_Ex::sendRedirect(SHOPPING_COMPLETE_URLPATH);
164                }
165                SC_Response_Ex::actionExit();
166                break;
167            default:
168                break;
169        }
170
171    }
172}
Note: See TracBrowser for help on using the repository browser.