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

Revision 19961, 4.4 KB checked in by kotani, 13 years ago (diff)

#748 モバイル/スマートフォンのデザイン管理機能:モバイルデザイン対応

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