source: branches/comu-ver2/data/Smarty/templates/default/shopping/confirm.tpl @ 18362

Revision 18362, 14.0 KB checked in by pineray, 15 years ago (diff)

購入手続きの確認画面で、確認内容の上部にもボタンを設置。

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22<script type="text/javascript" src="<!--{$TPL_DIR}-->js/jquery-1.3.2.min.js"></script>
23<script type="text/javascript" src="<!--{$TPL_DIR}-->js/jquery.easing.1.3.js"></script>
24<script type="text/javascript" src="<!--{$TPL_DIR}-->jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
25<link rel="stylesheet" href="<!--{$TPL_DIR}-->jquery.fancybox/jquery.fancybox.css" type="text/css" media="screen" />
26<script type="text/javascript">//<![CDATA[
27    var send = true;
28
29    function fnCheckSubmit() {
30        if(send) {
31            send = false;
32            return true;
33        } else {
34            alert("只今、処理中です。しばらくお待ち下さい。");
35            return false;
36        }
37    }
38
39    $(document).ready(function() {
40        $("a.expansion").fancybox({
41        });
42    });
43//]]></script>
44
45<!--▼CONTENTS-->
46<div id="under02column">
47    <div id="under02column_shopping">
48        <p class="flowarea"><img src="<!--{$TPL_DIR}-->img/shopping/flow03.gif" width="700" height="36" alt="購入手続きの流れ" /></p>
49        <h2 class="title"><!--{$tpl_title|escape}--></h2>
50
51        <p>下記ご注文内容で送信してもよろしいでしょうか?<br />
52            よろしければ、「<!--{if $payment_type != ""}-->次へ<!--{else}-->ご注文完了ページへ<!--{/if}-->」ボタンをクリックしてください。</p>
53
54        <form name="form1" id="form1" method="post" action="?">
55            <input type="hidden" name="mode" value="confirm" />
56            <input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->" />
57
58            <div class="tblareabtn">
59                <a href="./payment.php" onmouseover="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_back_on.gif',back03)" onmouseout="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_back.gif',back03)"><img src="<!--{$TPL_DIR}-->img/common/b_back.gif" width="150" height="30" alt="戻る" border="0" name="back03-top" id="back03-top" /></a>&nbsp;
60                <!--{if $payment_type != ""}-->
61                <input type="image" onclick="return fnCheckSubmit();" onmouseover="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_next_on.gif',this)" onmouseout="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_next.gif',this)" src="<!--{$TPL_DIR}-->img/common/b_next.gif" alt="次へ" class="box150" name="next-top" id="next-top" />
62                <!--{else}-->
63                <input type="image" onclick="return fnCheckSubmit();" onmouseover="chgImgImageSubmit('<!--{$TPL_DIR}-->img/shopping/b_ordercomp_on.gif',this)" onmouseout="chgImgImageSubmit('<!--{$TPL_DIR}-->img/shopping/b_ordercomp.gif',this)" src="<!--{$TPL_DIR}-->img/shopping/b_ordercomp.gif" alt="ご注文完了ページへ" class="box150" name="next-top" id="next-top" />                <!--{/if}-->
64            </div>
65
66            <table summary="ご注文内容確認">
67                <tr>
68                    <th>商品写真</th>
69                    <th>商品名</th>
70                    <th>単価</th>
71                    <th>数量</th>
72                    <th>小計</th>
73                </tr>
74                <!--{section name=cnt loop=$arrProductsClass}-->
75                <tr>
76                    <td class="phototd">
77                        <a
78                            <!--{if $arrProductsClass[cnt].main_image|strlen >= 1}-->
79                                href="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrProductsClass[cnt].main_image|sfNoImageMainList|escape}-->"
80                                class="expansion"
81                                target="_blank"
82                            <!--{/if}-->
83                        >
84                            <img src="<!--{$smarty.const.URL_DIR}-->resize_image.php?image=<!--{$arrProductsClass[cnt].main_list_image|sfNoImageMainList|escape}-->&amp;width=65&amp;height=65" alt="<!--{$arrProductsClass[cnt].name|escape}-->" /></a>
85                    </td>
86                    <td>
87                        <ul>
88                            <li><strong><!--{$arrProductsClass[cnt].name|escape}--></strong></li>
89                            <!--{if $arrProductsClass[cnt].classcategory_name1 != ""}-->
90                            <li><!--{$arrProductsClass[cnt].class_name1}-->:<!--{$arrProductsClass[cnt].classcategory_name1}--></li>
91                            <!--{/if}-->
92                            <!--{if $arrProductsClass[cnt].classcategory_name2 != ""}-->
93                            <li><!--{$arrProductsClass[cnt].class_name2}-->:<!--{$arrProductsClass[cnt].classcategory_name2}--></li>
94                            <!--{/if}-->
95                        </ul>
96                 </td>
97                 <td class="pricetd">
98                 <!--{if $arrProductsClass[cnt].price02 != ""}-->
99                     <!--{$arrProductsClass[cnt].price02|sfPreTax:$arrInfo.tax:$arrInfo.tax_rule|number_format}-->円
100                 <!--{else}-->
101                     <!--{$arrProductsClass[cnt].price01|sfPreTax:$arrInfo.tax:$arrInfo.tax_rule|number_format}-->円
102                 <!--{/if}-->
103                 </td>
104                 <td><!--{$arrProductsClass[cnt].quantity|number_format}--></td>
105                 <td class="pricetd"><!--{$arrProductsClass[cnt].total_pretax|number_format}-->円</td>
106             </tr>
107             <!--{/section}-->
108                <tr>
109                    <th colspan="4" class="resulttd">小計</th>
110                    <td class="pricetd"><!--{$tpl_total_pretax|number_format}-->円</td>
111                </tr>
112                <!--{if $smarty.const.USE_POINT !== false}-->
113                    <tr>
114                        <th colspan="4" class="resulttd">値引き(ポイントご使用時)</th>
115                        <td class="pricetd">
116                        <!--{assign var=discount value=`$arrData.use_point*$smarty.const.POINT_VALUE`}-->
117                         -<!--{$discount|number_format|default:0}-->円</td>
118                    </tr>
119                <!--{/if}-->
120                <tr>
121                    <th colspan="4" class="resulttd">送料</th>
122                    <td class="pricetd"><!--{$arrData.deliv_fee|number_format}-->円</td>
123                </tr>
124                <tr>
125                    <th colspan="4" class="resulttd">手数料</th>
126                    <td class="pricetd"><!--{$arrData.charge|number_format}-->円</td>
127                </tr>
128                <tr>
129                    <th colspan="4" class="resulttd">合計</th>
130                    <td class="pricetd"><em><!--{$arrData.payment_total|number_format}-->円</em></td>
131                </tr>
132            </table>
133
134            <!--{* ログイン済みの会員のみ *}-->
135            <!--{if ($tpl_login == 1 || $arrData.member_check == 1) && $smarty.const.USE_POINT !== false}-->
136                <table summary="ポイント確認" class="delivname">
137                    <tr>
138                        <th>ご注文前のポイント</th>
139                        <td><!--{$tpl_user_point|number_format|default:0}-->Pt</td>
140                    </tr>
141                    <tr>
142                        <th>ご使用ポイント</th>
143                        <td>-<!--{$arrData.use_point|number_format|default:0}-->Pt</td>
144                    </tr>
145                    <!--{if $arrData.birth_point > 0}-->
146                    <tr>
147                        <th>お誕生月ポイント</th>
148                        <td>+<!--{$arrData.birth_point|number_format|default:0}-->Pt</td>
149                    </tr>
150                    <!--{/if}-->
151                    <tr>
152                        <th>今回加算予定のポイント</th>
153                        <td>+<!--{$arrData.add_point|number_format|default:0}-->Pt</td>
154                    </tr>
155                    <tr>
156                    <!--{assign var=total_point value=`$tpl_user_point-$arrData.use_point+$arrData.add_point`}-->
157                        <th>加算後のポイント</th>
158                        <td><!--{$total_point|number_format}-->Pt</td>
159                    </tr>
160                </table>
161            <!--{/if}-->
162            <!--{* ログイン済みの会員のみ *}-->
163
164            <table summary="お届け先確認" class="delivname">
165                <thead>
166                    <tr>
167                        <th colspan="2">▼お届け先</th>
168                    </tr>
169                </thead>
170                <tbody>
171                    <!--{* 別のお届け先が選択されている場合 *}-->
172                    <!--{if $arrData.deliv_check >= 1}-->
173                        <tr>
174                            <th>お名前</th>
175                            <td><!--{$arrData.deliv_name01|escape}--> <!--{$arrData.deliv_name02|escape}--></td>
176                        </tr>
177                        <tr>
178                            <th>お名前(フリガナ)</th>
179                            <td><!--{$arrData.deliv_kana01|escape}--> <!--{$arrData.deliv_kana02|escape}--></td>
180                        </tr>
181                        <tr>
182                            <th>郵便番号</th>
183                            <td>〒<!--{$arrData.deliv_zip01|escape}-->-<!--{$arrData.deliv_zip02|escape}--></td>
184                        </tr>
185                        <tr>
186                            <th>住所</th>
187                            <td><!--{$arrPref[$arrData.deliv_pref]}--><!--{$arrData.deliv_addr01|escape}--><!--{$arrData.deliv_addr02|escape}--></td>
188                        </tr>
189                        <tr>
190                            <th>電話番号</th>
191                            <td><!--{$arrData.deliv_tel01}-->-<!--{$arrData.deliv_tel02}-->-<!--{$arrData.deliv_tel03}--></td>
192                        </tr>
193                    <!--{else}-->
194                        <tr>
195                            <th>お名前</th>
196                            <td><!--{$arrData.order_name01|escape}--> <!--{$arrData.order_name02|escape}--></td>
197                        </tr>
198                        <tr>
199                            <th>お名前(フリガナ)</th>
200                            <td><!--{$arrData.order_kana01|escape}--> <!--{$arrData.order_kana02|escape}--></td>
201                        </tr>
202                        <tr>
203                            <th>郵便番号</th>
204                            <td>〒<!--{$arrData.order_zip01|escape}-->-<!--{$arrData.order_zip02|escape}--></td>
205                        </tr>
206                        <tr>
207                            <th>住所</th>
208                            <td><!--{$arrPref[$arrData.order_pref]}--><!--{$arrData.order_addr01|escape}--><!--{$arrData.order_addr02|escape}--></td>
209                        </tr>
210                        <tr>
211                            <th>電話番号</th>
212                            <td><!--{$arrData.order_tel01}-->-<!--{$arrData.order_tel02}-->-<!--{$arrData.order_tel03}--></td>
213                        </tr>
214                    <!--{/if}-->
215                </tbody>
216            </table>
217            <!--お届け先ここまで-->
218
219            <table summary="お支払方法・お届け日時の指定・その他お問い合わせ" class="delivname">
220                <thead>
221                <tr>
222                    <th colspan="2">▼お支払方法・お届け日時の指定・その他お問い合わせ</th>
223                </tr>
224                </thead>
225                <tbody>
226                <tr>
227                    <th>お支払方法</th>
228                    <td><!--{$arrData.payment_method|escape}--></td>
229                </tr>
230                <tr>
231                    <th>お届け日</th>
232                    <td><!--{$arrData.deliv_date|escape|default:"指定なし"}--></td>
233                </tr>
234                <tr>
235                    <th>お届け時間</th>
236                    <td><!--{$arrData.deliv_time|escape|default:"指定なし"}--></td>
237                </tr>
238                <tr>
239                    <th>その他お問い合わせ</th>
240                    <td><!--{$arrData.message|escape|nl2br}--></td>
241                </tr>
242                </tbody>
243            </table>
244
245            <!--{if 'sfTSPrintOrderBox'|function_exists}-->
246                <!--{'sfTSPrintOrderBox'|call_user_func}-->
247            <!--{/if}-->
248           
249            <div class="tblareabtn">
250                <a href="./payment.php" onmouseover="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_back_on.gif',back03)" onmouseout="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_back.gif',back03)"><img src="<!--{$TPL_DIR}-->img/common/b_back.gif" width="150" height="30" alt="戻る" border="0" name="back03" id="back03" /></a>&nbsp;
251                <!--{if $payment_type != ""}-->
252                <input type="image" onclick="return fnCheckSubmit();" onmouseover="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_next_on.gif',this)" onmouseout="chgImgImageSubmit('<!--{$TPL_DIR}-->img/common/b_next.gif',this)" src="<!--{$TPL_DIR}-->img/common/b_next.gif" alt="次へ" class="box150" name="next" id="next" />
253                <!--{else}-->
254                <input type="image" onclick="return fnCheckSubmit();" onmouseover="chgImgImageSubmit('<!--{$TPL_DIR}-->img/shopping/b_ordercomp_on.gif',this)" onmouseout="chgImgImageSubmit('<!--{$TPL_DIR}-->img/shopping/b_ordercomp.gif',this)" src="<!--{$TPL_DIR}-->img/shopping/b_ordercomp.gif" alt="ご注文完了ページへ" class="box150" name="next" id="next" />
255                <!--{/if}-->
256            </div>
257        </form>
258    </div>
259</div>
260<!--▲CONTENTS-->
Note: See TracBrowser for help on using the repository browser.