Warning: Can't use blame annotator:
svn blame failed on branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php: バイナリファイル 'file:///home/svn/open/branches/version-2_5-dev/data/class/pages/shopping/LC_Page_Shopping_Confirm.php' に対しては blame で各行の最終変更者を計算できません 195004

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

Revision 20444, 6.8 KB checked in by shutta, 13 years ago (diff)

SC_CartSessionクラスのclass_extends対応。

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