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

Revision 20614, 4.5 KB checked in by nagano, 13 years ago (diff)

モバイル・スマートフォンのデザイン調整

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