source: branches/version-2_12-dev/data/Smarty/templates/default/products/list.tpl @ 21940

Revision 21940, 14.5 KB checked in by pineray, 12 years ago (diff)

#1879 検索のページングが動作しない

動作しないJavaScriptコードを削除.
カゴに入れるフォームは商品別のものを使用するように変更.

  • 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 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2012 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
23<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/products.js"></script>
24<script type="text/javascript">//<![CDATA[
25    function fnSetClassCategories(form, classcat_id2_selected) {
26        var $form = $(form);
27        var product_id = $form.find('input[name=product_id]').val();
28        var $sele1 = $form.find('select[name=classcategory_id1]');
29        var $sele2 = $form.find('select[name=classcategory_id2]');
30        setClassCategories($form, product_id, $sele1, $sele2, classcat_id2_selected);
31    }
32    // 並び順を変更
33    function fnChangeOrderby(orderby) {
34        fnSetVal('orderby', orderby);
35        fnSetVal('pageno', 1);
36        fnSubmit();
37    }
38    // 表示件数を変更
39    function fnChangeDispNumber(dispNumber) {
40        fnSetVal('disp_number', dispNumber);
41        fnSetVal('pageno', 1);
42        fnSubmit();
43    }
44    // カゴに入れる
45    function fnInCart(productForm) {
46        var searchForm = $("#form1");
47        var cartForm = $(productForm);
48        // 検索条件を引き継ぐ
49        var hiddenValues = ['mode','category_id','maker_id','name','orderby','disp_number','pageno','rnd'];
50        $.each(hiddenValues, function(){
51            // 商品別のフォームに検索条件の値があれば上書き
52            if (cartForm.has('input[name='+this+']')) {
53                cartForm.find('input[name='+this+']').val(searchForm.find('input[name='+this+']').val());
54            }
55            // なければ追加
56            else {
57                cartForm.append($("<input/>").attr("name", this).val(searchForm.find('input[name='+this+']').val()));
58            }
59        });
60        // 商品別のフォームを送信
61        cartForm.submit();
62    }
63//]]></script>
64
65<div id="undercolumn">
66    <form name="form1" id="form1" method="get" action="?">
67        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
68        <input type="hidden" name="mode" value="<!--{$mode|h}-->" />
69        <!--{* ▼検索条件 *}-->
70        <input type="hidden" name="category_id" value="<!--{$arrSearchData.category_id|h}-->" />
71        <input type="hidden" name="maker_id" value="<!--{$arrSearchData.maker_id|h}-->" />
72        <input type="hidden" name="name" value="<!--{$arrSearchData.name|h}-->" />
73        <!--{* ▲検索条件 *}-->
74        <!--{* ▼ページナビ関連 *}-->
75        <input type="hidden" name="orderby" value="<!--{$orderby|h}-->" />
76        <input type="hidden" name="disp_number" value="<!--{$disp_number|h}-->" />
77        <input type="hidden" name="pageno" value="<!--{$tpl_pageno|h}-->" />
78        <!--{* ▲ページナビ関連 *}-->
79        <!--{* ▼注文関連 *}-->
80        <input type="hidden" name="product_id" value="" />
81        <input type="hidden" name="classcategory_id1" value="" />
82        <input type="hidden" name="classcategory_id2" value="" />
83        <input type="hidden" name="product_class_id" value="" />
84        <input type="hidden" name="quantity" value="" />
85        <!--{* ▲注文関連 *}-->
86        <input type="hidden" name="rnd" value="<!--{$tpl_rnd|h}-->" />
87    </form>
88
89    <!--★タイトル★-->
90    <h2 class="title"><!--{$tpl_subtitle|h}--></h2>
91
92    <!--▼検索条件-->
93    <!--{if $tpl_subtitle == "検索結果"}-->
94        <ul class="pagecond_area">
95            <li><strong>商品カテゴリ:</strong><!--{$arrSearch.category|h}--></li>
96        <!--{if $arrSearch.maker|strlen >= 1}--><li><strong>メーカー:</strong><!--{$arrSearch.maker|h}--></li><!--{/if}-->
97            <li><strong>商品名:</strong><!--{$arrSearch.name|h}--></li>
98        </ul>
99    <!--{/if}-->
100    <!--▲検索条件-->
101
102    <!--▼ページナビ(本文)-->
103    <!--{capture name=page_navi_body}-->
104        <div class="pagenumber_area clearfix">
105            <div class="change">
106                <!--{if $orderby != 'price'}-->
107                    <a href="javascript:fnChangeOrderby('price');">価格順</a>
108                <!--{else}-->
109                    <strong>価格順</strong>
110                <!--{/if}-->&nbsp;
111                <!--{if $orderby != "date"}-->
112                        <a href="javascript:fnChangeOrderby('date');">新着順</a>
113                <!--{else}-->
114                    <strong>新着順</strong>
115                <!--{/if}-->
116                表示件数
117                <select name="disp_number" onchange="javascript:fnChangeDispNumber(this.value);">
118                    <!--{foreach from=$arrPRODUCTLISTMAX item="dispnum" key="num"}-->
119                        <!--{if $num == $disp_number}-->
120                            <option value="<!--{$num}-->" selected="selected" ><!--{$dispnum}--></option>
121                        <!--{else}-->
122                            <option value="<!--{$num}-->" ><!--{$dispnum}--></option>
123                        <!--{/if}-->
124                    <!--{/foreach}-->
125                </select>
126            </div>
127            <div class="navi"><!--{$tpl_strnavi}--></div>
128        </div>
129    <!--{/capture}-->
130    <!--▲ページナビ(本文)-->
131
132    <!--{foreach from=$arrProducts item=arrProduct name=arrProducts}-->
133
134        <!--{if $smarty.foreach.arrProducts.first}-->
135            <!--▼件数-->
136            <div>
137                <span class="attention"><!--{$tpl_linemax}-->件</span>の商品がございます。
138            </div>
139            <!--▲件数-->
140
141            <!--▼ページナビ(上部)-->
142            <form name="page_navi_top" id="page_navi_top" action="?">
143                <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
144                <!--{if $tpl_linemax > 0}--><!--{$smarty.capture.page_navi_body|smarty:nodefaults}--><!--{/if}-->
145            </form>
146            <!--▲ページナビ(上部)-->
147        <!--{/if}-->
148
149        <!--{assign var=id value=$arrProduct.product_id}-->
150        <!--{assign var=arrErr value=$arrProduct.arrErr}-->
151        <!--▼商品-->
152        <form name="product_form<!--{$id|h}-->" action="?" onsubmit="return false;">
153        <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
154        <div class="list_area clearfix">
155            <a name="product<!--{$id|h}-->"></a>
156            <div class="listphoto">
157                <!--★画像★-->
158                <a href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$arrProduct.product_id|u}-->">
159                    <img src="<!--{$smarty.const.IMAGE_SAVE_URLPATH}--><!--{$arrProduct.main_list_image|sfNoImageMainList|h}-->" alt="<!--{$arrProduct.name|h}-->" class="picture" /></a>
160            </div>
161
162            <div class="listrightbloc">
163                <!--▼商品ステータス-->
164                <!--{if count($productStatus[$id]) > 0}-->
165                    <ul class="status_icon clearfix">
166                        <!--{foreach from=$productStatus[$id] item=status}-->
167                            <li>
168                                <img src="<!--{$TPL_URLPATH}--><!--{$arrSTATUS_IMAGE[$status]}-->" width="60" height="17" alt="<!--{$arrSTATUS[$status]}-->"/>
169                            </li>
170                        <!--{/foreach}-->
171                    </ul>
172                <!--{/if}-->
173                <!--▲商品ステータス-->
174
175                <!--★商品名★-->
176                <h3>
177                    <a href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$arrProduct.product_id|u}-->"><!--{$arrProduct.name|h}--></a>
178                </h3>
179                <!--★価格★-->
180                <div class="pricebox sale_price">
181                    <!--{$smarty.const.SALE_PRICE_TITLE}-->(税込):
182                    <span class="price">
183                        <span id="price02_default_<!--{$id}-->"><!--{strip}-->
184                            <!--{if $arrProduct.price02_min_inctax == $arrProduct.price02_max_inctax}-->
185                                <!--{$arrProduct.price02_min_inctax|number_format}-->
186                            <!--{else}-->
187                                <!--{$arrProduct.price02_min_inctax|number_format}-->~<!--{$arrProduct.price02_max_inctax|number_format}-->
188                            <!--{/if}-->
189                        </span><span id="price02_dynamic_<!--{$id}-->"></span><!--{/strip}-->
190                        円</span>
191                </div>
192
193                <!--★コメント★-->
194                <div class="listcomment"><!--{$arrProduct.main_list_comment|h|nl2br}--></div>
195
196                <!--★商品詳細を見る★-->
197                <div class="detail_btn">
198                    <!--{assign var=name value="detail`$id`"}-->
199                    <a href="<!--{$smarty.const.P_DETAIL_URLPATH}--><!--{$arrProduct.product_id|u}-->" onmouseover="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_detail_on.jpg','<!--{$name}-->');" onmouseout="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_detail.jpg','<!--{$name}-->');">
200                    <img src="<!--{$TPL_URLPATH}-->img/button/btn_detail.jpg" alt="商品詳細を見る" name="<!--{$name}-->" id="<!--{$name}-->" /></a>
201                </div>
202
203                <!--▼買い物かご-->
204                <input type="hidden" name="product_id" value="<!--{$id|h}-->" />
205                <input type="hidden" name="product_class_id" id="product_class_id<!--{$id|h}-->" value="<!--{$tpl_product_class_id[$id]}-->" />
206
207                <div class="cart_area clearfix">
208                    <!--{if $tpl_stock_find[$id]}-->
209                        <!--{if $tpl_classcat_find1[$id]}-->
210                            <div class="classlist">
211                                <dl class="size01 clearfix">
212                                        <!--▼規格1-->
213                                        <dt><!--{$tpl_class_name1[$id]|h}-->:</dt>
214                                        <dd>
215                                            <select name="classcategory_id1" style="<!--{$arrErr.classcategory_id1|sfGetErrorColor}-->">
216                                                <!--{html_options options=$arrClassCat1[$id] selected=$arrProduct.classcategory_id1}-->
217                                            </select>
218                                            <!--{if $arrErr.classcategory_id1 != ""}-->
219                                                <p class="attention">※ <!--{$tpl_class_name1[$id]}-->を入力して下さい。</p>
220                                            <!--{/if}-->
221                                        </dd>
222                                        <!--▲規格1-->
223                                </dl>
224                                <!--{if $tpl_classcat_find2[$id]}-->
225                                    <dl class="size02 clearfix">
226                                        <!--▼規格2-->
227                                        <dt><!--{$tpl_class_name2[$id]|h}-->:</dt>
228                                        <dd>
229                                            <select name="classcategory_id2" style="<!--{$arrErr.classcategory_id2|sfGetErrorColor}-->">
230                                            </select>
231                                            <!--{if $arrErr.classcategory_id2 != ""}-->
232                                                <p class="attention">※ <!--{$tpl_class_name2[$id]}-->を入力して下さい。</p>
233                                            <!--{/if}-->
234                                        </dd>
235                                        <!--▲規格2-->
236                                    </dl>
237                                <!--{/if}-->
238                            </div>
239                        <!--{/if}-->
240                        <div class="cartin clearfix">
241                            <div class="quantity">
242                                数量:<input type="text" name="quantity" class="box" value="<!--{$arrProduct.quantity|default:1|h}-->" maxlength="<!--{$smarty.const.INT_LEN}-->" style="<!--{$arrErr.quantity|sfGetErrorColor}-->" />
243                                <!--{if $arrErr.quantity != ""}-->
244                                    <br /><span class="attention"><!--{$arrErr.quantity}--></span>
245                                <!--{/if}-->
246                            </div>
247                            <div class="cartin_btn">
248                                <!--★カゴに入れる★-->
249                                <div id="cartbtn_default_<!--{$id}-->">
250                                    <input type="image" id="cart<!--{$id}-->" src="<!--{$TPL_URLPATH}-->img/button/btn_cartin.jpg" alt="カゴに入れる" onclick="fnInCart(this.form); return false;" onmouseover="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_cartin_on.jpg', this);" onmouseout="chgImg('<!--{$TPL_URLPATH}-->img/button/btn_cartin.jpg', this);" />
251                                </div>
252                                <div class="attention" id="cartbtn_dynamic_<!--{$id}-->"></div>
253                            </div>
254                        </div>
255                    <!--{else}-->
256                        <div class="cartbtn attention">申し訳ございませんが、只今品切れ中です。</div>
257                    <!--{/if}-->
258                </div>
259                <!--▲買い物かご-->
260            </div>
261        </div>
262        </form>
263        <!--▲商品-->
264
265        <!--{if $smarty.foreach.arrProducts.last}-->
266            <!--▼ページナビ(下部)-->
267            <form name="page_navi_bottom" id="page_navi_bottom" action="?">
268                <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
269                <!--{if $tpl_linemax > 0}--><!--{$smarty.capture.page_navi_body|smarty:nodefaults}--><!--{/if}-->
270            </form>
271            <!--▲ページナビ(下部)-->
272        <!--{/if}-->
273
274    <!--{foreachelse}-->
275        <!--{include file="frontparts/search_zero.tpl"}-->
276    <!--{/foreach}-->
277
278</div>
Note: See TracBrowser for help on using the repository browser.