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

Revision 23124, 7.0 KB checked in by kimoto, 11 years ago (diff)

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

  • 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    public 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->arrCountry = $masterData->getMasterData('mtb_country');
47        $this->arrSex = $masterData->getMasterData('mtb_sex');
48        $this->arrJob = $masterData->getMasterData('mtb_job');
49        $this->arrMAILMAGATYPE = $masterData->getMasterData('mtb_mail_magazine_type');
50        $this->arrReminder = $masterData->getMasterData('mtb_reminder');
51        $this->arrDeliv = SC_Helper_Delivery_Ex::getIDValueList('service_name');
52        $this->httpCacheControl('nocache');
53    }
54
55    /**
56     * Page のプロセス.
57     *
58     * @return void
59     */
60    public function process()
61    {
62        parent::process();
63        $this->action();
64        $this->sendResponse();
65    }
66
67    /**
68     * Page のアクション.
69     *
70     * @return void
71     */
72    public function action()
73    {
74        //決済処理中ステータスのロールバック
75        $objPurchase = new SC_Helper_Purchase_Ex();
76        $objPurchase->checkSessionPendingOrder();
77        $objPurchase->checkDbMyPendignOrder();
78        $objPurchase->checkDbAllPendingOrder();
79
80        $objCartSess = new SC_CartSession_Ex();
81        $objSiteSess = new SC_SiteSession_Ex();
82        $objCustomer = new SC_Customer_Ex();
83        $objPurchase = new SC_Helper_Purchase_Ex();
84
85        $this->is_multiple = $objPurchase->isMultiple();
86
87        // 前のページで正しく登録手続きが行われた記録があるか判定
88        if (!$objSiteSess->isPrePage()) {
89            SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, $objSiteSess);
90        }
91
92        // ユーザユニークIDの取得と購入状態の正当性をチェック
93        $this->tpl_uniqid = $objSiteSess->getUniqId();
94        $objPurchase->verifyChangeCart($this->tpl_uniqid, $objCartSess);
95
96        $this->cartKey = $objCartSess->getKey();
97
98        // カート内商品のチェック
99        $this->tpl_message = $objCartSess->checkProducts($this->cartKey);
100        if (!SC_Utils_Ex::isBlank($this->tpl_message)) {
101            SC_Response_Ex::sendRedirect(CART_URLPATH);
102            SC_Response_Ex::actionExit();
103        }
104
105        // カートの商品を取得
106        $this->arrShipping = $objPurchase->getShippingTemp($this->is_multiple);
107        $this->arrCartItems = $objCartSess->getCartList($this->cartKey);
108        // 合計金額
109        $this->tpl_total_inctax[$this->cartKey] = $objCartSess->getAllProductsTotal($this->cartKey);
110        // 税額
111        $this->tpl_total_tax[$this->cartKey] = $objCartSess->getAllProductsTax($this->cartKey);
112        // ポイント合計
113        $this->tpl_total_point[$this->cartKey] = $objCartSess->getAllProductsPoint($this->cartKey);
114
115        // 一時受注テーブルの読込
116        $arrOrderTemp = $objPurchase->getOrderTemp($this->tpl_uniqid);
117        // カート集計を元に最終計算
118        $arrCalcResults = $objCartSess->calculate($this->cartKey, $objCustomer,
119                                                  $arrOrderTemp['use_point'],
120                                                  $objPurchase->getShippingPref($this->is_multiple),
121                                                  $arrOrderTemp['charge'],
122                                                  $arrOrderTemp['discount'],
123                                                  $arrOrderTemp['deliv_id'],
124                                                  $arrOrderTemp['order_pref'],  // 税金計算の為に追加 注文者基準
125                                                  $arrOrderTemp['order_country_id'] // 税金計算の為に追加 注文者基準
126                                                  );
127
128        $this->arrForm = array_merge($arrOrderTemp, $arrCalcResults);
129
130        // 会員ログインチェック
131        if ($objCustomer->isLoginSuccess(true)) {
132            $this->tpl_login = '1';
133            $this->tpl_user_point = $objCustomer->getValue('point');
134        }
135
136        // 決済モジュールを使用するかどうか
137        $this->use_module = SC_Helper_Payment_Ex::useModule($this->arrForm['payment_id']);
138
139        switch ($this->getMode()) {
140            // 前のページに戻る
141            case 'return':
142                // 正常な推移であることを記録しておく
143                $objSiteSess->setRegistFlag();
144
145                SC_Response_Ex::sendRedirect(SHOPPING_PAYMENT_URLPATH);
146                SC_Response_Ex::actionExit();
147                break;
148            case 'confirm':
149                /*
150                 * 決済モジュールで必要なため, 受注番号を取得
151                 */
152                $this->arrForm['order_id'] = $objPurchase->getNextOrderID();
153                $_SESSION['order_id'] = $this->arrForm['order_id'];
154
155                // 集計結果を受注一時テーブルに反映
156                $objPurchase->saveOrderTemp($this->tpl_uniqid, $this->arrForm,
157                                            $objCustomer);
158
159                // 正常に登録されたことを記録しておく
160                $objSiteSess->setRegistFlag();
161
162                // 決済モジュールを使用する場合
163                if ($this->use_module) {
164                    $objPurchase->completeOrder(ORDER_PENDING);
165
166                    SC_Response_Ex::sendRedirect(SHOPPING_MODULE_URLPATH);
167                }
168                // 購入完了ページ
169                else {
170                    $objPurchase->completeOrder(ORDER_NEW);
171                    SC_Helper_Purchase_Ex::sendOrderMail($this->arrForm['order_id'], $this);
172
173                    SC_Response_Ex::sendRedirect(SHOPPING_COMPLETE_URLPATH);
174                }
175                SC_Response_Ex::actionExit();
176                break;
177            default:
178                break;
179        }
180
181    }
182}
Note: See TracBrowser for help on using the repository browser.