source: branches/version-2_13-dev/data/class/pages/mypage/LC_Page_Mypage_History.php @ 23027

Revision 23027, 9.0 KB checked in by yomoro, 11 years ago (diff)

#1506 決済処理中でストップした際に在庫とポイントが差し引かれてしまう 対応。一旦こちらの形でコミットさせていただきます。

  • 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/mypage/LC_Page_AbstractMypage_Ex.php';
25
26/**
27 * 購入履歴 のページクラス.
28 *
29 * @package Page
30 * @author LOCKON CO.,LTD.
31 * @version $Id$
32 */
33class LC_Page_Mypage_History extends LC_Page_AbstractMypage_Ex
34{
35    /**
36     * Page を初期化する.
37     *
38     * @return void
39     */
40    function init()
41    {
42        parent::init();
43        $this->tpl_mypageno     = 'index';
44        $this->tpl_subtitle     = '購入履歴詳細';
45        $this->httpCacheControl('nocache');
46
47        $masterData             = new SC_DB_MasterData_Ex();
48        $this->arrMAILTEMPLATE  = $masterData->getMasterData('mtb_mail_template');
49        $this->arrPref          = $masterData->getMasterData('mtb_pref');
50        $this->arrCountry       = $masterData->getMasterData('mtb_country');
51        $this->arrWDAY          = $masterData->getMasterData('mtb_wday');
52        $this->arrProductType   = $masterData->getMasterData('mtb_product_type');
53        $this->arrCustomerOrderStatus = $masterData->getMasterData('mtb_customer_order_status');
54    }
55
56    /**
57     * Page のプロセス.
58     *
59     * @return void
60     */
61    function process()
62    {
63        parent::process();
64    }
65
66    /**
67     * Page のAction.
68     *
69     * @return void
70     */
71    function action()
72    {
73        //決済処理中ステータスのロールバック
74        SC_Helper_Purchase_Ex::checkSessionPendingOrder();
75        SC_Helper_Purchase_Ex::checkDbMyPendignOrder();
76        SC_Helper_Purchase_Ex::checkDbAllPendingOrder();
77       
78        $objCustomer    = new SC_Customer_Ex();
79        $objPurchase = new SC_Helper_Purchase_Ex();
80        $objProduct  = new SC_Product();
81
82        if (!SC_Utils_Ex::sfIsInt($_GET['order_id'])) {
83            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR);
84        }
85
86        $order_id               = $_GET['order_id'];
87        $this->is_price_change  = false;
88
89        //受注データの取得
90        $this->tpl_arrOrderData = $objPurchase->getOrder($order_id, $objCustomer->getValue('customer_id'));
91
92        if (empty($this->tpl_arrOrderData)) {
93            SC_Utils_Ex::sfDispSiteError(CUSTOMER_ERROR);
94        }
95
96        $this->arrShipping      = $this->lfGetShippingDate($objPurchase, $order_id, $this->arrWDAY);
97
98        $this->isMultiple       = count($this->arrShipping) > 1;
99        // 支払い方法の取得
100        $this->arrPayment       = SC_Helper_Payment_Ex::getIDValueList();
101        // 受注商品明細の取得
102        $this->tpl_arrOrderDetail = $objPurchase->getOrderDetail($order_id);
103        foreach ($this->tpl_arrOrderDetail as $product_index => $arrOrderProductDetail) {
104            //必要なのは商品の販売金額のみなので、遅い場合は、別途SQL作成した方が良い
105            $arrTempProductDetail = $objProduct->getProductsClass($arrOrderProductDetail['product_class_id']);
106            // 税計算
107            $this->tpl_arrOrderDetail[$product_index]['price_inctax'] = $this->tpl_arrOrderDetail[$product_index]['price']  +
108                SC_Helper_TaxRule_Ex::calcTax (
109                    $this->tpl_arrOrderDetail[$product_index]['price'],
110                    $this->tpl_arrOrderDetail[$product_index]['tax_rate'],
111                    $this->tpl_arrOrderDetail[$product_index]['tax_rule']
112                    );
113            $arrTempProductDetail['price02_inctax'] = SC_Helper_TaxRule_Ex::sfCalcIncTax(
114                    $arrTempProductDetail['price02'],
115                    $arrTempProductDetail['product_id'],
116                    $arrTempProductDetail['product_class_id']
117                    );
118            if($this->tpl_arrOrderDetail[$product_index]['price_inctax'] != $arrTempProductDetail['price02_inctax']) {
119                $this->is_price_change = true;
120            }
121            $this->tpl_arrOrderDetail[$product_index]['product_price_inctax'] = ($arrTempProductDetail['price02_inctax']) ? $arrTempProductDetail['price02_inctax'] : 0 ;
122        }
123
124        $this->tpl_arrOrderDetail = $this->setMainListImage($this->tpl_arrOrderDetail);
125        $objPurchase->setDownloadableFlgTo($this->tpl_arrOrderDetail);
126        // モバイルダウンロード対応処理
127        $this->lfSetAU($this->tpl_arrOrderDetail);
128        // 受注メール送信履歴の取得
129        $this->tpl_arrMailHistory = $this->lfGetMailHistory($order_id);
130    }
131
132    /**
133     * 受注メール送信履歴の取得
134     *
135     * @param integer $order_id 注文番号
136     * @return array 受注メール送信履歴の内容
137     */
138    function lfGetMailHistory($order_id)
139    {
140        $objQuery   =& SC_Query_Ex::getSingletonInstance();
141        $col        = 'send_date, subject, template_id, send_id';
142        $where      = 'order_id = ?';
143        $objQuery->setOrder('send_date DESC');
144
145        return $objQuery->select($col, 'dtb_mail_history', $where, array($order_id));
146    }
147
148    /**
149     * 受注お届け先情報の取得
150     *
151     * @param $objPurchase object SC_Helper_Purchaseクラス
152     * @param $order_id integer 注文番号
153     * @param $arrWDAY array 曜日データの配列
154     * @return array お届け先情報
155     */
156    function lfGetShippingDate(&$objPurchase, $order_id, $arrWDAY)
157    {
158        $arrShipping = $objPurchase->getShippings($order_id);
159
160        foreach ($arrShipping as $shipping_index => $shippingData) {
161            foreach ($shippingData as $key => $val) {
162                if ($key == 'shipping_date' && SC_Utils_Ex::isBlank($val) == false) {
163                    // お届け日を整形
164                    list($y, $m, $d, $w) = explode(' ', date('Y m d w' , strtotime($val)));
165                    $arrShipping[$shipping_index]['shipping_date'] = sprintf('%04d/%02d/%02d(%s)', $y, $m, $d, $arrWDAY[$w]);
166                }
167            }
168        }
169
170        return $arrShipping;
171    }
172
173    /**
174     * 購入履歴商品に画像をセット
175     *
176     * @param $arrOrderDetail 購入履歴の配列
177     * @return array 画像をセットした購入履歴の配列
178     */
179    function setMainListImage($arrOrderDetails)
180    {
181        $i = 0;
182        foreach ($arrOrderDetails as $arrOrderDetail) {
183            $objQuery =& SC_Query_Ex::getSingletonInstance();
184            $arrProduct = $objQuery->select('main_list_image', 'dtb_products', 'product_id = ?', array($arrOrderDetail['product_id']));
185            $arrOrderDetails[$i]['main_list_image'] = $arrProduct[0]['main_list_image'];
186            $i++;
187        }
188
189        return $arrOrderDetails;
190    }
191
192    /**
193     * 購入履歴商品にMIMETYPE、ファイル名をセット
194     *
195     * @param $arrOrderDetail 購入履歴の配列
196     * @return array MIMETYPE、ファイル名をセットした購入履歴の配列
197     */
198    function lfSetMimetype($arrOrderDetails)
199    {
200        $objHelperMobile = new SC_Helper_Mobile_Ex();
201        $i = 0;
202        foreach ($arrOrderDetails as $arrOrderDetail) {
203            $objQuery =& SC_Query_Ex::getSingletonInstance();
204            $arrProduct = $objQuery->select('down_realfilename,down_filename', 'dtb_products_class', 'product_id = ? AND product_class_id = ?', array($arrOrderDetail['product_id'],$arrOrderDetail['product_class_id']));
205            $arrOrderDetails[$i]['mime_type'] = $objHelperMobile->getMimeType($arrProduct[0]['down_realfilename']);
206            $arrOrderDetails[$i]['down_filename'] = $arrProduct[0]['down_filename'];
207            $i++;
208        }
209
210        return $arrOrderDetails;
211    }
212
213    /**
214     * 特定キャリア(AU)モバイルダウンロード処理
215     * キャリアがAUのモバイル端末からダウンロードする場合は単純に
216     * Aタグでダウンロードできないケースがある為、対応する。
217     *
218     * @param integer $order_id 注文番号
219     * @param $arrOrderDetail 購入履歴の配列
220     */
221    function lfSetAU($arrOrderDetails)
222    {
223        $this->isAU = false;
224        // モバイル端末かつ、キャリアがAUの場合に処理を行う
225        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE && SC_MobileUserAgent::getCarrier() == 'ezweb') {
226            // MIMETYPE、ファイル名のセット
227            $this->tpl_arrOrderDetail = $this->lfSetMimetype($arrOrderDetails);
228
229            // @deprecated 2.12.0 PHP 定数 SID を使うこと
230            $this->phpsessid = $_GET['PHPSESSID'];
231
232            $this->isAU = true;
233        }
234    }
235}
Note: See TracBrowser for help on using the repository browser.