source: branches/version-2_12-multilang/data/Smarty/templates/sphone_en/mypage/delivery.tpl @ 22179

Revision 22179, 7.8 KB checked in by h_yoshimoto, 11 years ago (diff)

#1998 都道府県関連を削除

Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2012 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
25<section id="mypagecolumn">
26    <h2 class="title"><!--{$tpl_title|h}--></h2>
27    <!--{include file=$tpl_navi}-->
28
29    <h3 class="title_mypage"><!--{$tpl_subtitle|h}--></h3>
30    <!--★インフォメーション★-->
31    <div class="information">
32        <p>This is a list of registered addresses.<p>
33        <p>A maximum of <!--{$smarty.const.DELIV_ADDR_MAX|h}--> items can be registered.</p>
34    </div>
35    <!--{if $tpl_linemax < $smarty.const.DELIV_ADDR_MAX}-->
36        <!--{* 退会時非表示 *}-->
37        <!--{if $tpl_login}-->
38            <!--★ボタン★-->
39            <div class="btn_area_top">
40                <a href="<!--{$smarty.const.ROOT_URLPATH}-->mypage/delivery_addr.php" class="btn_sub addbtn" rel="external" target="_blank">Add new delivery destination</a>
41            </div>
42        <!--{/if}-->
43    <!--{/if}-->
44
45    <div class="form_area">
46        <!--{if $tpl_linemax > 0}-->
47            <form name="form1" id="form1" method="post" action="<!--{$smarty.const.HTTPS_URL|sfTrimURL}-->/mypage/delivery.php" >
48                <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
49                <input type="hidden" name="mode" value="" />
50                <input type="hidden" name="other_deliv_id" value="" />
51                <input type="hidden" name="pageno" value="<!--{$tpl_pageno}-->" />
52
53                <!--▼フォームボックスここから -->
54                <div class="formBox">
55
56                    <!--{section name=cnt loop=$arrOtherDeliv max=$dispNumber}-->
57                        <!--▼お届け先 -->
58                        <div class="delivBox">
59                            <p><em><span class="zip_title">Delivery address<!--{$smarty.section.cnt.iteration}--></span></em>:<br />
60                                <span class="zip01"><!--{$arrOtherDeliv[cnt].zip01}--></span>-<span class="zip02"><!--{$arrOtherDeliv[cnt].zip02}--></span><br />
61                                <span class="address"><!--{$arrOtherDeliv[cnt].addr01|h}--><!--{$arrOtherDeliv[cnt].addr02|h}--></span><br />
62                                <span class="name01"><!--{$arrOtherDeliv[cnt].name01|h}--></span>&nbsp;<span class="name02"><!--{$arrOtherDeliv[cnt].name02|h}--></span></p>
63
64                            <ul class="edit">
65                                <li><a href="#" onClick="win02('./delivery_addr.php?other_deliv_id=<!--{$arrOtherDeliv[cnt].other_deliv_id}-->','deliv_disp','600','640'); return false;" class="b_edit deliv_edit" rel="external">Edit</a></li>
66                                <li><a href="#" onClick="fnModeSubmit('delete','other_deliv_id','<!--{$arrOtherDeliv[cnt].other_deliv_id}-->'); return false;" class="deliv_delete" rel="external"><img src="<!--{$TPL_URLPATH}-->img/button/btn_delete.png" class="pointer" width="21" height="20" alt="Delete" /></a></li>
67                            </ul>
68                        </div>
69                        <!--▲お届け先-->
70                    <!--{/section}-->
71
72                </div><!--▲formBox -->
73            </form>
74        <!--{else}-->
75            <p class="delivempty"><strong>There are no new delivery destinations.</strong></p>
76        <!--{/if}-->
77
78        <!--{if count($arrOtherDeliv) > $dispNumber}-->
79            <p><a rel="external" href="javascript: void(0);" class="btn_more" id="btn_more_delivery" onClick="getDelivery(<!--{$dispNumber}-->); return false;" rel="external">View more (+<!--{$dispNumber}--> items)</a></p>
80        <!--{/if}-->
81
82    </div><!-- /.form_area -->
83</section>
84
85<!--▼検索バー -->
86<section id="search_area">
87    <form method="get" action="<!--{$smarty.const.ROOT_URLPATH}-->products/list.php">
88        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
89        <input type="hidden" name="mode" value="search" />
90        <input type="search" name="name" id="search" value="" placeholder="Input keyword" class="searchbox" >
91    </form>
92</section>
93<!--▲検索バー -->
94
95<script>
96    var pageNo = 2;
97
98    function getDelivery(limit) {
99        $.mobile.showPageLoadingMsg();
100        var i = limit;
101        //送信データを準備
102        var postData = {};
103        $('#form1').find(':input').each(function(){
104            postData[$(this).attr('name')] = $(this).val();
105        });
106        postData["mode"] = "getList";
107        postData["pageno"] = pageNo;
108        postData["disp_number"] = i;
109
110        $.ajax({
111            type: "POST",
112            url: "<!--{$smarty.const.ROOT_URLPATH}-->mypage/delivery.php",
113            data: postData,
114            cache: false,
115            dataType: "json",
116            error: function(XMLHttpRequest, textStatus, errorThrown){
117                alert(textStatus);
118                $.mobile.hidePageLoadingMsg();
119            },
120            success: function(result){
121                var count = ((pageNo - 1) * i + 1); //お届け先住所の番号
122                for (var j = 0; j < i; j++) {
123                    if (result[j] != null) {
124                        var delivery = result[j];
125                        var deliveryHtml = "";
126                        var maxCnt = $(".delivBox").length - 1;
127                        var deliveryEl = $(".delivBox").get(maxCnt);
128                        deliveryEl = $(deliveryEl).clone(true).insertAfter(deliveryEl);
129                        maxCnt++;
130
131                        //住所タイトルをセット
132                        $($(".delivBox span.zip_title").get(maxCnt)).text('Delivery address' + count);
133                        //郵便番号1をセット
134                        $($(".delivBox span.zip01").get(maxCnt)).text(delivery.zip01);
135                        //郵便番号2をセット
136                        $($(".delivBox span.zip02").get(maxCnt)).text(delivery.zip02);
137                        //住所をセット
138                        $($(".delivBox span.address").get(maxCnt)).text(delivery.prefname + delivery.addr01 + delivery.addr02);
139                        //姓をセット
140                        $($(".delivBox span.name01").get(maxCnt)).text(delivery.name01);
141                        //名前をセット
142                        $($(".delivBox span.name02").get(maxCnt)).text(delivery.name02);
143                        //編集ボタンをセット
144                        $($(".delivBox a.deliv_edit").get(maxCnt)).attr("onClick", "win02('./delivery_addr.php?other_deliv_id=" + delivery.other_deliv_id + "','deliv_disp','600','640'); return false;");
145                        //削除ボタンをセット
146                        $($(".delivBox a.deliv_delete").get(maxCnt)).attr("onClick", "fnModeSubmit('delete','other_deliv_id','" + delivery.other_deliv_id + "'); return false;");
147                        count++;
148                    }
149                }
150                pageNo++;
151
152                //すべてのお届け先を表示したか判定
153                if (parseInt(result.delivCount) <= $(".delivBox").length) {
154                    $("#btn_more_delivery").hide();
155                }
156                $.mobile.hidePageLoadingMsg();
157            }
158        });
159    }
160</script>
Note: See TracBrowser for help on using the repository browser.