source: branches/version-2_12-dev/data/Smarty/templates/mobile/shopping/confirm.tpl @ 21867

Revision 21867, 6.8 KB checked in by nakanishi, 12 years ago (diff)

#1831 Copyright Update

  • 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-2012 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    <form method="post" action="<!--{$smarty.const.MOBILE_SHOPPING_CONFIRM_URLPATH}-->">
27        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->">
28        <input type="hidden" name="mode" value="confirm">
29        <input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
30
31        下記のご注文内容に間違いはございませんか?<br>
32
33        <br>
34
35        【ご注文内容】<br>
36        <!--{foreach from=$arrCartItems item=item}-->
37            ◎<!--{$item.productsClass.name|h}--><br>
38            <!--{if $item.productsClass.classcategory_name1 != ""}--><!--{$item.productsClass.class_name1}-->:<!--{$item.productsClass.classcategory_name1}--><br><!--{/if}-->
39            <!--{if $item.productsClass.classcategory_name2 != ""}--><!--{$item.productsClass.class_name2}-->:<!--{$item.productsClass.classcategory_name2}--><br><!--{/if}-->
40            &nbsp;単価:<!--{$item.price|sfCalcIncTax|number_format}-->円<br>
41            &nbsp;数量:<!--{$item.quantity|number_format}--><br>
42            &nbsp;小計:<!--{$item.total_inctax|number_format}-->円<br>
43            <br>
44        <!--{/foreach}-->
45
46        【購入金額】<br>
47        商品合計:<!--{$tpl_total_inctax[$cartKey]|number_format}-->円<br>
48        <!--{if $smarty.const.USE_POINT !== false}-->
49            <!--{assign var=discount value=`$arrForm.use_point*$smarty.const.POINT_VALUE`}-->
50            ポイント値引き:-<!--{$discount|number_format|default:0}-->円<br>
51        <!--{/if}-->
52        送料:<!--{$arrForm.deliv_fee|number_format}-->円<br>
53        <!--{if $arrForm.charge > 0}-->手数料:<!--{$arrForm.charge|number_format}-->円<br><!--{/if}-->
54        <font color="#FF0000">合計:<!--{$arrForm.payment_total|number_format}-->円</font><br>
55        (内消費税:<!--{$arrForm.tax|number_format}-->円)<br>
56
57        <!--{* ログイン済みの会員のみ *}-->
58        <!--{if $tpl_login == 1 && $smarty.const.USE_POINT !== false}-->
59            <br>
60            【ポイント確認】<br>
61            ご注文前のポイント:<!--{$tpl_user_point|number_format|default:0}-->Pt<br>
62            ご使用ポイント:-<!--{$arrForm.use_point|number_format|default:0}-->Pt<br>
63            <!--{if $arrForm.birth_point > 0}-->お誕生月ポイント:+<!--{$arrForm.birth_point|number_format|default:0}-->Pt<br><!--{/if}-->
64            今回加算予定のポイント:+<!--{$arrForm.add_point|number_format|default:0}-->Pt<br>
65            <!--{assign var=total_point value=`$tpl_user_point-$arrForm.use_point+$arrForm.add_point`}-->
66            加算後のポイント:<!--{$total_point|number_format}-->Pt<br>
67
68            <br>
69        <!--{/if}-->
70
71        <!--{* 販売方法判定(ダウンロード販売のみの場合はお届け先を表示しない) *}-->
72        <!--{if $cartKey != $smarty.const.PRODUCT_TYPE_DOWNLOAD}-->
73            【お届け先】<br>
74            <!--{foreach item=shippingItem from=$arrShipping name=shippingItem}-->
75                <!--{if $is_multiple}-->
76                    ▼お届け先<!--{$smarty.foreach.shippingItem.iteration}--><br>
77                    <!--{* 複数お届け先の場合、お届け先毎の商品を表示 *}-->
78                    <!--{foreach item=item from=$shippingItem.shipment_item}-->
79                        ◎<!--{$item.productsClass.name|h}--><br>
80                        <!--{if $item.productsClass.classcategory_name1 != ""}--><!--{$item.productsClass.class_name1}-->:<!--{$item.productsClass.classcategory_name1}--><br><!--{/if}-->
81                        <!--{if $item.productsClass.classcategory_name2 != ""}--><!--{$item.productsClass.class_name2}-->:<!--{$item.productsClass.classcategory_name2}--><br><!--{/if}-->
82                        &nbsp;数量:<!--{$item.quantity}--><br>
83                        <br>
84                    <!--{/foreach}-->
85                <!--{/if}-->
86
87                〒<!--{$shippingItem.shipping_zip01|h}-->-<!--{$shippingItem.shipping_zip02|h}--><br>
88                <!--{$arrPref[$shippingItem.shipping_pref]}--><!--{$shippingItem.shipping_addr01|h}--><!--{$shippingItem.shipping_addr02|h}--><br>
89                <!--{$shippingItem.shipping_name01|h}--> <!--{$shippingItem.shipping_name02|h}--><br>
90                <!--{$shippingItem.shipping_tel01}-->-<!--{$shippingItem.shipping_tel02}-->-<!--{$shippingItem.shipping_tel03}--><br>
91                <!--{if $shippingItem.shipping_fax01 > 0}-->
92                    <!--{$shippingItem.shipping_fax01}-->-<!--{$shippingItem.shipping_fax02}-->-<!--{$shippingItem.shipping_fax03}--><br>
93                <!--{/if}-->
94
95                <br>
96
97                お届け日:<!--{$shippingItem.shipping_date|default:"指定なし"|h}--><br>
98                お届け時間:<!--{$shippingItem.shipping_time|default:"指定なし"|h}--><br>
99
100                <br>
101            <!--{/foreach}-->
102        <!--{/if}-->
103
104        【配送方法】<br>
105        <!--{$arrDeliv[$arrForm.deliv_id]|h}--><br>
106
107        <br>
108
109        【お支払い方法】<br>
110        <!--{$arrForm.payment_method|h}--><br>
111
112        <br>
113
114        <!--{if $arrForm.message != ""}-->
115            【その他お問い合わせ】<br>
116            <!--{$arrForm.message|h|nl2br}--><br>
117            <br>
118        <!--{/if}-->
119        <!--{if $use_module}-->
120            <center><input type="submit" value="次へ"></center>
121        <!--{else}-->
122            <center><input type="submit" value="注文"></center>
123        <!--{/if}-->
124    </form>
125
126    <form action="<!--{$smarty.const.MOBILE_SHOPPING_PAYMENT_URLPATH}-->" method="post">
127        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->">
128        <input type="hidden" name="mode" value="select_deliv">
129        <input type="hidden" name="deliv_id" value="<!--{$arrForm.deliv_id|h}-->">
130        <input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
131        <center><input type="submit" value="戻る"></center>
132    </form>
133<!--{/strip}-->
Note: See TracBrowser for help on using the repository browser.