source: branches/version-2_5-dev/data/Smarty/templates/mobile/shopping/payment.tpl @ 19915

Revision 19915, 4.2 KB checked in by kotani, 13 years ago (diff)

#754 モバイルサイト ポイント機能対応

  • Property svn:eol-style set to LF
  • 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-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<center>お支払方法・お届け時間等の指定</center>
25
26<hr>
27
28<form method="post" action="?">
29<input type="hidden" name="mode" value="confirm">
30<input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
31■お支払方法 <font color="#FF0000">*</font><br>
32<!--{assign var=key value="payment_id"}-->
33<!--{if $arrErr[$key] != ""}-->
34<font color="#FF0000"><!--{$arrErr[$key]}--></font>
35<!--{/if}-->
36<!--{section name=cnt loop=$arrPayment}-->
37<input type="radio" name="<!--{$key}-->" value="<!--{$arrPayment[cnt].payment_id}-->" <!--{$arrPayment[cnt].payment_id|sfGetChecked:$arrForm[$key].value}-->>
38<!--{$arrPayment[cnt].payment_method|h}-->
39<br>
40<!--{/section}-->
41<br>
42
43■お届け日<br>
44<!--{assign var=key value="deliv_date"}-->
45<!--{if $arrErr[$key] != ""}-->
46<font color="#FF0000"><!--{$arrErr[$key]}--></font>
47<!--{/if}-->
48<!--{if $arrDelivDate}-->
49<select name="<!--{$key}-->">
50<option value="">指定なし</option>
51<!--{html_options options=$arrDelivDate selected=$arrForm[$key].value}-->
52</select>
53<!--{else}-->
54ご指定頂けません。
55<!--{/if}-->
56<br>
57<br>
58
59■お届け時間<br>
60<!--{assign var=key value="deliv_time_id"}-->
61<!--{if $arrErr[$key] != ""}-->
62<font color="#FF0000"><!--{$arrErr[$key]}--></font>
63<!--{/if}-->
64<select name="<!--{$key}-->">
65<option value="">指定なし</option>
66<!--{html_options options=$arrDelivTime selected=$arrForm[$key].value}-->
67</select>
68<br>
69<br>
70
71■その他お問い合わせ<br>
72<!--{assign var=key value="message"}-->
73<!--{if $arrErr[$key] != ""}-->
74<font color="#FF0000"><!--{$arrErr[$key]}--></font>
75<!--{/if}-->
76<textarea cols="20" rows="2" name="<!--{$key}-->"><!--{$arrForm[$key].value|h}--></textarea>
77<br>
78<br>
79
80<!--{if $tpl_login == 1 && $smarty.const.USE_POINT !== false}-->
81■ポイント使用の指定<br>
821ポイントを<!--{$smarty.const.POINT_VALUE}-->円として使用する事ができます。<br>
83<br>
84<!--{$objCustomer->getValue('name01')|h}--> <!--{$objCustomer->getValue('name02')|h}-->様の、現在の所持ポイントは「<!--{$tpl_user_point|number_format|default:0}-->Pt」です。<br>
85<br>
86今回ご購入合計金額: <!--{$arrData.subtotal|number_format}-->円<br>
87(送料、手数料を含みません。)<br>
88<br>
89<input type="radio" name="point_check" value="1" <!--{$arrForm.point_check.value|sfGetChecked:1}-->>ポイントを使用する<br>
90<!--{assign var=key value="use_point"}-->
91<!--{if $arrErr[$key] != ""}-->
92<font color="#FF0000"><!--{$arrErr[$key]}--></font>
93<!--{/if}-->
94<input type="text" name="<!--{$key}-->" value="<!--{$arrForm[$key].value|default:$tpl_user_point}-->" maxlength="<!--{$arrForm[$key].length}-->" size="6">&nbsp;ポイントを使用する。<br>
95<input type="radio" name="point_check" value="2" <!--{$arrForm.point_check.value|sfGetChecked:2}-->>ポイントを使用しない<br>
96<br>
97<!--{/if}-->
98
99<center><input type="submit" value="次へ"></center>
100</form>
101
102<form action="<!--{$tpl_back_url|h}-->" method="get">
103<center><input type="submit" name="return" value="戻る"></center>
104</form>
105
106<hr>
107
108<a href="<!--{$smarty.const.MOBILE_CART_URL_PATH}-->" accesskey="9"><!--{9|numeric_emoji}-->かごを見る</a><br>
109<a href="<!--{$smarty.const.MOBILE_TOP_URL_PATH}-->" accesskey="0"><!--{0|numeric_emoji}-->TOPページへ</a><br>
110
111<br>
112
113<!-- ▼フッター ここから -->
114<!--{include file='footer.tpl'}-->
115<!-- ▲フッター ここまで -->
Note: See TracBrowser for help on using the repository browser.