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

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

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

Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2010 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各商品のお届け先を選択してください。<br>
23<br>
24
25<form method="post" action="?">
26<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->">
27<input type="hidden" name="uniqid" value="<!--{$tpl_uniqid}-->">
28<input type="hidden" name="mode" value="confirm">
29<!--{foreach from=$items item=item name=cartItem}-->
30<!--{assign var=index value=$smarty.foreach.cartItem.index}-->
31<input type="hidden" name="cart_no<!--{$index}-->" value="<!--{$index}-->" />
32<input type="hidden" name="product_class_id<!--{$index}-->" value="<!--{$item.product_class_id}-->" />
33
34<!--{* 商品名 *}--><!--{$item.name|h}--><br>
35<!--{* 規格名1 *}--><!--{if $item.classcategory_name1 != ""}--><!--{$item.class_name1}-->:<!--{$item.classcategory_name1}--><br><!--{/if}-->
36<!--{* 規格名2 *}--><!--{if $item.classcategory_name2 != ""}--><!--{$item.class_name2}-->:<!--{$item.classcategory_name2}--><br><!--{/if}-->
37<!--{* 販売価格 *}-->
38<!--{$item.price02|sfCalcIncTax:$arrInfo.tax:$arrInfo.tax_rule|number_format}-->円<br>
39<!--{assign var=key value="quantity`$index`"}-->
40数量:<input type="text" name="<!--{$key}-->" value="<!--{$arrForm[$key].value}-->" size="4" />
41<br>
42<!--{assign var=key value="shipping`$index`"}-->
43お届け先:<br>
44<select name="<!--{$key}-->"><!--{html_options options=$addrs selected=$arrForm[$key].value}--></select>
45<br>
46<hr>
47<!--{/foreach}-->
48
49<center><input type="submit" value="選択したお届け先に送る"></center>
50</form>
51
52<!--{if $tpl_addrmax < $smarty.const.DELIV_ADDR_MAX}-->
53<form method="post" action="<!--{$smarty.const.URL_PATH}-->mypage/delivery_addr.php">
54    <input type="hidden" name="ParentPage" value="<!--{$smarty.const.MULTIPLE_URLPATH}-->">
55    一覧にご希望の住所が無い場合は、お届け先を新規登録してください。<br>
56    <center><input type="submit" value="新規登録"></center>
57    ※最大<!--{$smarty.const.DELIV_ADDR_MAX|h}-->件まで登録できます。<br>
58</form>
59<!--{/if}-->
60
61<form action="<!--{$smarty.const.SHOPPING_URL}-->" method="get">
62<center><input type="submit" name="return" value="戻る"></center>
63</form>
64
65<br>
Note: See TracBrowser for help on using the repository browser.