source: branches/version-2_13-dev/data/Smarty/templates/mobile/mypage/history.tpl @ 23494

Revision 23494, 8.1 KB checked in by pineray, 10 years ago (diff)

#2386 PHP 警告撲滅 for 2.13.3

ロケール処理も考慮に入れて、Smartyの修飾子で対応するように変更.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
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*}-->
24
25<!--{strip}-->
26    購入日時:<!--{$tpl_arrOrderData.create_date|sfDispDBDate}--><br>
27    注文番号:<!--{$tpl_arrOrderData.order_id}--><br>
28    お支払い方法:<!--{$arrPayment[$tpl_arrOrderData.payment_id]|h}-->
29
30    <form action="order.php" method="post">
31        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->">
32        <input type="hidden" name="order_id" value="<!--{$tpl_arrOrderData.order_id}-->">
33        <input type="submit" name="submit" value="再注文">
34    </form>
35
36    ■購入商品詳細<br>
37    <!--{foreach from=$tpl_arrOrderDetail item=orderDetail}-->
38        <hr>
39        商品コード:<!--{$orderDetail.product_code|h}--><br>
40        商品名:<a<!--{if $orderDetail.enable}--> href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$orderDetail.product_id|u}-->"<!--{/if}-->><!--{$orderDetail.product_name|h}--></a><br>
41        商品種別:
42        <!--{if $orderDetail.product_type_id == $smarty.const.PRODUCT_TYPE_DOWNLOAD}-->
43            <!--{if $orderDetail.is_downloadable}-->
44                <!--{if $isAU == false}-->
45                    <a target="_self" href="<!--{$smarty.const.ROOT_URLPATH}-->mypage/download.php?order_id=<!--{$tpl_arrOrderData.order_id}-->&amp;product_id=<!--{$orderDetail.product_id}-->&amp;product_class_id=<!--{$orderDetail.product_class_id}-->">ダウンロード</a><br>
46                <!--{else}-->
47                    <object data="<!--{$smarty.const.ROOT_URLPATH}-->mypage/download.php?order_id=<!--{$tpl_arrOrderData.order_id}-->&amp;product_id=<!--{$orderDetail.product_id}-->&amp;product_class_id=<!--{$orderDetail.product_class_id}-->&amp;<!--{$smarty.const.SID}-->" copyright="no" standby="ダウンロード" type="<!--{$orderDetail.mime_type}-->">
48                        <param name="title" value="<!--{$orderDetail.down_filename}-->" valuetype="data">
49                    </object><br>
50                <!--{/if}-->
51            <!--{else}-->
52                <!--{if $orderDetail.payment_date == "" && $orderDetail.effective == "0"}-->
53                    <!--{$arrProductType[$orderDetail.product_type_id]}--><br>(入金確認中)<br>
54                <!--{else}-->
55                    <!--{$arrProductType[$orderDetail.product_type_id]}--><br>(期限切れ)<br>
56                <!--{/if}-->
57            <!--{/if}-->
58        <!--{else}-->
59            <!--{$arrProductType[$orderDetail.product_type_id]}--><br>
60        <!--{/if}-->
61        単価:
62        <!--{assign var=price value=`$orderDetail.price`}-->
63        <!--{assign var=quantity value=`$orderDetail.quantity`}-->
64        <!--{assign var=tax_rate value=`$orderDetail.tax_rate`}-->
65        <!--{assign var=tax_rule value=`$orderDetail.tax_rule`}-->
66        <!--{$price|sfCalcIncTax:$tax_rate:$tax_rule|n2s|h}-->円<br>
67        数量:<!--{$quantity|h}--><br>
68        小計:<!--{$price|sfCalcIncTax:$tax_rate:$tax_rule|sfMultiply:$quantity|n2s}-->円<br>
69    <!--{/foreach}-->
70    <hr>
71    小計:<!--{$tpl_arrOrderData.subtotal|n2s}-->円<br>
72    <!--{assign var=point_discount value="`$tpl_arrOrderData.use_point*$smarty.const.POINT_VALUE`"}-->
73    <!--{if $point_discount > 0}-->
74        ポイント値引き:<!--{$point_discount|n2s}-->円<br>
75    <!--{/if}-->
76    <!--{assign var=key value="discount"}-->
77    <!--{if $tpl_arrOrderData[$key] != "" && $tpl_arrOrderData[$key] > 0}-->
78        値引き:<!--{$tpl_arrOrderData[$key]|n2s}-->円<br>
79    <!--{/if}-->
80    送料:<!--{assign var=key value="deliv_fee"}--><!--{$tpl_arrOrderData[$key]|n2s|h}-->円<br>
81    手数料:
82    <!--{assign var=key value="charge"}-->
83    <!--{$tpl_arrOrderData[$key]|n2s|h}-->円<br>
84    合計:<!--{$tpl_arrOrderData.payment_total|n2s}-->円<br>
85    <hr>
86    <!-- 使用ポイントここから -->
87    <!--{if $smarty.const.USE_POINT !== false}-->
88        ■使用ポイント<br>
89        ご使用ポイント:<!--{assign var=key value="use_point"}--><!--{$tpl_arrOrderData[$key]|n2s|default:0}--> pt<br>
90        今回加算されるポイント:<!--{$tpl_arrOrderData.add_point|n2s|default:0}--> pt<br>
91        <hr>
92    <!--{/if}-->
93    <!-- 使用ポイントここまで -->
94
95    <!--{foreach item=shippingItem name=shippingItem from=$arrShipping}-->
96        ▼お届け先<!--{if $isMultiple}--><!--{$smarty.foreach.shippingItem.iteration}--><!--{/if}--><br>
97        <!--{if $isMultiple}-->
98            <!--{foreach item=item from=$shippingItem.shipment_item}-->
99                商品コード:<!--{$item.productsClass.product_code|h}--><br>
100                商品名:<!--{* 商品名 *}--><!--{$item.productsClass.name|h}--><br>
101                <!--{if $item.productsClass.classcategory_name1 != ""}-->
102                    <!--{$item.productsClass.class_name1}-->:<!--{$item.productsClass.classcategory_name1}--><br>
103                <!--{/if}-->
104                <!--{if $item.productsClass.classcategory_name2 != ""}-->
105                    <!--{$item.productsClass.class_name2}-->:<!--{$item.productsClass.classcategory_name2}--><br>
106                <!--{/if}-->
107                単価:<!--{$item.price|sfCalcIncTax:$tpl_arrOrderData.order_tax_rate:$tpl_arrOrderData.order_tax_rule|n2s}-->円<br>
108                数量:<!--{$item.quantity}--><br>
109                <br>
110            <!--{/foreach}-->
111        <!--{/if}-->
112        ●お名前<br>
113        <!--{$shippingItem.shipping_name01|h}-->&nbsp;<!--{$shippingItem.shipping_name02|h}--><br>
114        ●お名前(フリガナ)<br>
115        <!--{$shippingItem.shipping_kana01|h}-->&nbsp;<!--{$shippingItem.shipping_kana02|h}--><br>
116        ●会社名<br>
117        <!--{$shippingItem.shipping_company_name|h}--><br>
118        <!--{if $smarty.const.FORM_COUNTRY_ENABLE}-->
119            ●国<br>
120            <!--{$arrCountry[$shippingItem.shipping_country_id]|h}--><br>
121            ●ZIPCODE<br>
122            <!--{$shippingItem.shipping_zipcode|h}--><br>
123        <!--{/if}-->
124        ●住所<br>
125        〒<!--{$shippingItem.shipping_zip01}-->-<!--{$shippingItem.shipping_zip02}--><br>
126        <!--{$arrPref[$shippingItem.shipping_pref]}--><!--{$shippingItem.shipping_addr01|h}--><!--{$shippingItem.shipping_addr02|h}--><br>
127        ●電話番号<br>
128        <!--{$shippingItem.shipping_tel01}-->-<!--{$shippingItem.shipping_tel02}-->-<!--{$shippingItem.shipping_tel03}--><br>
129        <!--{if $shippingItem.shipping_fax01 > 0}-->
130            ●FAX番号<br>
131            <!--{$shippingItem.shipping_fax01}-->-<!--{$shippingItem.shipping_fax02}-->-<!--{$shippingItem.shipping_fax03}--><br>
132        <!--{/if}-->
133        ●お届け日<br>
134        <!--{$shippingItem.shipping_date|default:'指定なし'|h}-->&nbsp;<br>
135        ●お届け時間<br>
136        <!--{$shippingItem.shipping_time|default:'指定なし'|h}-->&nbsp;<br>
137        <br>
138    <!--{/foreach}-->
139
140    <hr>
141
142    ■メール配信履歴一覧<br>
143    <!--{section name=cnt loop=$tpl_arrMailHistory}-->
144        <!--{assign var=key value="`$tpl_arrMailHistory[cnt].template_id`"}-->
145        処理日:<!--{$tpl_arrMailHistory[cnt].send_date|sfDispDBDate|h}--><br>
146        通知メール:<!--{$arrMAILTEMPLATE[$key]|h}--><br>
147        件名:
148        <a href="./mail_view.php?send_id=<!--{$tpl_arrMailHistory[cnt].send_id}-->"><!--{$tpl_arrMailHistory[cnt].subject|h}--></a><br>
149    <!--{/section}-->
150    <br>
151<!--{/strip}-->
Note: See TracBrowser for help on using the repository browser.