source: branches/comu-ver2/data/Smarty/templates/default/mypage/delivery.tpl @ 17758

Revision 17758, 3.9 KB checked in by Seasoft, 15 years ago (diff)

別のお届け先登録に関わる不具合を修正。

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/html; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2007 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<!--▼CONTENTS-->
25<div id="mypagecolumn">
26    <h2 class="title"><!--{$tpl_title|escape}--></h2>
27<!--{include file=$tpl_navi}-->
28    <div id="mycontentsarea">
29        <h3><!--{$tpl_subtitle|escape}--></h3>
30        <p>登録住所以外へのご住所へ送付される場合等にご利用いただくことができます。</p>
31        <p>※最大<!--{$smarty.const.DELIV_ADDR_MAX|escape}-->件まで登録できます。</p>
32
33        <!--{if $tpl_linemax < $smarty.const.DELIV_ADDR_MAX}-->
34            <p class="addbtn">
35                <a href="<!--{$smarty.const.URL_DIR}-->mypage/delivery_addr.php" onclick="win03('./delivery_addr.php','delivadd','600','640'); return false;" onmouseover="chgImg('<!--{$TPL_DIR}-->img/common/newadress_on.gif','newadress');" onmouseout="chgImg('<!--{$TPL_DIR}-->img/common/newadress.gif','newadress');" target="_blank"><img src="<!--{$TPL_DIR}-->img/common/newadress.gif" width="160" height="22" alt="新しいお届け先を追加" border="0" name="newadress" /></a>
36            </p>
37        <!--{/if}-->
38
39        <!--{if $tpl_linemax > 0}-->
40        <form name="form1" method="post" action="?" >
41            <input type="hidden" name="mode" value="" />
42            <input type="hidden" name="other_deliv_id" value="" />
43            <input type="hidden" name="pageno" value="<!--{$tpl_pageno}-->" />
44
45            <table summary="お届け先">
46                <tr>
47                    <th colspan="5">▼お届け先</th>
48                </tr>
49                <!--{section name=cnt loop=$arrOtherDeliv}-->
50                    <!--{assign var=OtherPref value="`$arrOtherDeliv[cnt].pref`"}-->
51                    <tr>
52                        <td class="centertd"><!--{$smarty.section.cnt.iteration}--></td>
53                        <td><label for="add<!--{$smarty.section.cnt.iteration}-->">お届け先住所</label></td>
54                        <td>
55                            〒<!--{$arrOtherDeliv[cnt].zip01}-->-<!--{$arrOtherDeliv[cnt].zip02}--><br />
56                            <!--{$arrPref[$OtherPref]|escape}--><!--{$arrOtherDeliv[cnt].addr01|escape}--><!--{$arrOtherDeliv[cnt].addr02|escape}--><br />
57                            <!--{$arrOtherDeliv[cnt].name01|escape}-->&nbsp;<!--{$arrOtherDeliv[cnt].name02|escape}-->
58                        </td>
59                        <td class="centertd">
60                            <a href="./delivery_addr.php" onclick="win02('./delivery_addr.php?other_deliv_id=<!--{$arrOtherDeliv[cnt].other_deliv_id}-->','deliv_disp','600','640'); return false;">変更</a>
61                        </td>
62                        <td class="centertd">
63                            <a href="<!--{$smarty.server.PHP_SELF}-->" onclick="fnModeSubmit('delete','other_deliv_id','<!--{$arrOtherDeliv[cnt].other_deliv_id}-->'); return false;">削除</a>
64                        </td>
65                    </tr>
66                <!--{/section}-->
67            </table>
68        </form>
69        <!--{else}-->
70        <p class="delivempty"><strong>新しいお届け先はありません。</strong></p>
71        <!--{/if}-->
72    </div>
73</div>
74<!--▲CONTENTS-->
Note: See TracBrowser for help on using the repository browser.