source: branches/comu-ver2/data/Smarty/templates/default/detail.tpl @ 18700

Revision 18700, 26.7 KB checked in by nanasess, 14 years ago (diff)

Copyright の更新(#601)

  • Property svn:eol-style set to LF
  • 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-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<script type="text/javascript" src="<!--{$TPL_DIR}-->jquery.fancybox/jquery.mousewheel-3.0.2.pack.js"></script>
23<script type="text/javascript" src="<!--{$TPL_DIR}-->jquery.fancybox/jquery.fancybox-1.3.1.pack.js"></script>
24<link rel="stylesheet" href="<!--{$TPL_DIR}-->jquery.fancybox/jquery.fancybox-1.3.1.css" type="text/css" media="screen" />
25<script type="text/javascript">//<![CDATA[
26// 規格2に選択肢を割り当てる。
27function fnSetClassCategories(form, classcat_id2_selected) {
28    sele1 = form.classcategory_id1;
29    sele2 = form.classcategory_id2;
30
31    if (sele1) {
32        if (sele2) {
33            // 規格2の選択肢をクリア
34            count = sele2.options.length;
35            for(i = count; i >= 0; i--) {
36                sele2.options[i] = null;
37            }
38           
39            // 規格2に選択肢を割り当てる
40            classcats = classCategories[sele1.value];
41            i = 0;
42            for (var classcat_id2_key in classcats) {
43                sele2.options[i] = new Option(classcats[classcat_id2_key].name, classcat_id2_key);
44                if (classcat_id2_key == classcat_id2_selected) {
45                    sele2.options[i].selected = true;
46                }
47                i++;
48            }
49        }
50        fnCheckStock(form);
51    }
52}
53function fnCheckStock(form) {
54    classcat_id1 = form.classcategory_id1.value;
55    classcat_id2 = form.classcategory_id2 ? form.classcategory_id2.value : 0;
56    classcat2 = classCategories[classcat_id1][classcat_id2];
57   
58    // 商品コード
59    eleDefault = document.getElementById('product_code_default');
60    eleDynamic = document.getElementById('product_code_dynamic');
61    if (
62           classcat2
63        && typeof classcat2.product_code != 'undefined'
64    ) {
65        eleDefault.style.display = 'none';
66        eleDynamic.innerHTML = classcat2.product_code;
67    } else {
68        eleDefault.style.display = '';
69        eleDynamic.innerHTML = '';
70    }
71   
72    // 在庫(品切れ)
73    eleDefault = document.getElementById('cartbtn_default');
74    eleDynamic = document.getElementById('cartbtn_dynamic');
75    if (
76           classcat2
77        && classcat2.stock_find === false
78    ) {
79        eleDefault.style.display = 'none';
80        eleDynamic.innerHTML = '申し訳ございませんが、只今品切れ中です。';
81    } else {
82        eleDefault.style.display = '';
83        eleDynamic.innerHTML = '';
84    }
85   
86    // 通常価格
87    eleDefault = document.getElementById('price01_default');
88    eleDynamic = document.getElementById('price01_dynamic');
89    if (eleDefault && eleDynamic) {
90        if (
91               classcat2
92            && typeof classcat2.price01 != 'undefined'
93            && String(classcat2.price01).length >= 1
94        ) {
95            eleDefault.style.display = 'none';
96            eleDynamic.innerHTML = classcat2.price01;
97        } else {
98            eleDefault.style.display = '';
99            eleDynamic.innerHTML = '';
100        }
101    }
102   
103    // 販売価格
104    eleDefault = document.getElementById('price02_default');
105    eleDynamic = document.getElementById('price02_dynamic');
106    if (
107           classcat2
108        && typeof classcat2.price02 != 'undefined'
109        && String(classcat2.price02).length >= 1
110    ) {
111        eleDefault.style.display = 'none';
112        eleDynamic.innerHTML = classcat2.price02;
113    } else {
114        eleDefault.style.display = '';
115        eleDynamic.innerHTML = '';
116    }
117   
118    // ポイント
119    eleDefault = document.getElementById('point_default');
120    eleDynamic = document.getElementById('point_dynamic');
121    if (
122           classcat2
123        && typeof classcat2.point != 'undefined'
124        && String(classcat2.point).length >= 1
125    ) {
126        eleDefault.style.display = 'none';
127        eleDynamic.innerHTML = classcat2.point;
128    } else {
129        eleDefault.style.display = '';
130        eleDynamic.innerHTML = '';
131    }
132}
133$(document).ready(function() {
134    $("a.expansion").fancybox({
135    });
136});
137//]]>
138</script>
139
140<!--▼CONTENTS-->
141<div id="undercolumn" class="product product_detail">
142   
143    <!--★タイトル★-->
144    <h2 class="title"><!--{$tpl_subtitle|escape}--></h2>
145   
146    <!--★詳細メインコメント★-->
147    <div class="main_comment"><!--{$arrProduct.main_comment|nl2br_html}--></div>
148
149    <div id="detailarea">
150        <div id="detailphotoblock">
151
152            <!--{assign var=key value="main_image"}-->
153           
154            <!--★画像★-->
155            <a
156                <!--{if $arrProduct.main_large_image|strlen >= 1}-->
157                    href="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrProduct.main_large_image|escape}-->"
158                    class="expansion"
159                    onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion_on.gif','expansion01');"
160                    onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion.gif','expansion01');"
161                    target="_blank"
162                <!--{/if}-->
163            >
164                <img src="<!--{$arrFile[$key].filepath|escape}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" alt="<!--{$arrProduct.name|escape}-->" class="picture" /><br />
165                <!--★拡大する★-->
166                <!--{if $arrProduct.main_large_image|strlen >= 1}-->
167                    <img src="<!--{$TPL_DIR}-->img/products/b_expansion.gif" width="85" height="13" alt="画像を拡大する" name="expansion01" id="expansion01" />
168                <!--{/if}-->
169            </a>
170        </div>
171
172        <div id="detailrightblock">
173            <!--▼商品ステータス-->
174            <!--{if count($arrProduct.product_flag) > 0}-->
175                <ul class="status_icon">
176                    <!--{section name=flg loop=$arrProduct.product_flag|count_characters}-->
177                    <!--{if $arrProduct.product_flag[flg] == "1"}-->
178                    <li>
179                        <!--{assign var=key value="`$smarty.section.flg.iteration`"}-->
180                        <img src="<!--{$TPL_DIR}--><!--{$arrSTATUS_IMAGE[$key]}-->" width="65" height="17" alt="<!--{$arrSTATUS[$key]}-->" id="icon<!--{$key}-->" />
181                    </li>
182                    <!--{/if}-->
183                    <!--{/section}-->
184                </ul>
185            <!--{/if}-->
186            <!--▲商品ステータス-->
187
188            <!--★商品コード★-->
189            <div>商品コード:
190                <span id="product_code_default">
191                    <!--{if $arrProduct.product_code_min == $arrProduct.product_code_max}-->
192                        <!--{$arrProduct.product_code_min|escape}-->
193                    <!--{else}-->
194                        <!--{$arrProduct.product_code_min|escape}-->~<!--{$arrProduct.product_code_max|escape}-->
195                    <!--{/if}-->
196                </span><span id="product_code_dynamic"></span>
197            </div>
198           
199            <!--★商品名★-->
200            <h2><!--{$arrProduct.name|escape}--></h2>
201           
202            <!--★販売価格★-->
203            <div class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>:
204                <span class="price">
205                    <span id="price02_default">
206                        <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
207                            <!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
208                        <!--{else}-->
209                            <!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$arrProduct.price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
210                        <!--{/if}-->
211                    </span><span id="price02_dynamic"></span>
212                    円
213                </span>
214            </div>
215           
216            <!--★通常価格★-->
217            <!--{if $arrProduct.price01_max > 0}-->
218                <div class="normal_price">
219                    <!--{$smarty.const.NORMAL_PRICE_TITLE}-->:
220                    <span class="price">
221                        <span id="price01_default">
222                            <!--{if $arrProduct.price01_min == $arrProduct.price01_max}-->
223                                <!--{$arrProduct.price01_min|number_format}-->
224                            <!--{else}-->
225                                <!--{$arrProduct.price01_min|number_format}-->~<!--{$arrProduct.price01_max|number_format}-->
226                            <!--{/if}-->
227                        </span><span id="price01_dynamic"></span>
228                        円
229                    </span>
230                </div>
231            <!--{/if}-->
232
233            <!--★ポイント★-->
234            <!--{if $smarty.const.USE_POINT !== false}-->
235                <div><span class="price">ポイント:
236                    <span id="point_default">
237                        <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
238                            <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
239                        <!--{else}-->
240                            <!--{if $arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id == $arrProduct.price02_max|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
241                                <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
242                            <!--{else}-->
243                                <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->~<!--{$arrProduct.price02_max|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
244                            <!--{/if}-->
245                        <!--{/if}-->
246                        </span><span id="point_dynamic"></span>
247                        Pt
248                    </span>
249                </div>
250            <!--{/if}-->
251
252            <!--▼メーカーURL-->
253            <!--{if $arrProduct.comment1|strlen >= 1}-->
254                <div><span class="comment1">メーカーURL:
255                    <a href="<!--{$arrProduct.comment1|escape}-->">
256                        <!--{$arrProduct.comment1|escape}--></a>
257                </div>
258            <!--{/if}-->
259            <!--▲メーカーURL-->
260
261            <!--★関連カテゴリ★-->
262            <div class="relative_cat">関連カテゴリ:
263                <!--{section name=r loop=$arrRelativeCat}-->
264                <p>
265                    <!--{section name=s loop=$arrRelativeCat[r]}-->
266                    <a href="<!--{$smarty.const.URL_DIR}-->products/list.php?category_id=<!--{$arrRelativeCat[r][s].category_id}-->"><!--{$arrRelativeCat[r][s].category_name}--></a>
267                    <!--{if !$smarty.section.s.last}--><!--{$smarty.const.SEPA_CATNAVI}--><!--{/if}-->
268                    <!--{/section}-->
269                </p>
270                <!--{/section}-->
271            </div>
272
273            <!--▼買い物かご-->
274            <form name="form1" id="form1" method="post" action="?">
275                <input type="hidden" name="mode" value="cart" />
276                <input type="hidden" name="product_id" value="<!--{$tpl_product_id}-->" />
277                <input type="hidden" name="favorite_product_id" value="" />
278               
279                <!--{if $tpl_stock_find}-->
280                    <dl>
281                        <!--{if $tpl_classcat_find1}-->
282                            <!--▼規格1-->
283                            <dt><!--{$tpl_class_name1|escape}--></dt>
284                            <dd>
285                                <select name="classcategory_id1"
286                                    style="<!--{$arrErr.classcategory_id1|sfGetErrorColor}-->"
287                                    onchange="fnSetClassCategories(this.form);"
288                                >
289                                    <!--{html_options options=$arrClassCat1 selected=$arrForm.classcategory_id1.value}-->
290                                </select>
291                                <!--{if $arrErr.classcategory_id1 != ""}-->
292                                    <br /><span class="attention">※ <!--{$tpl_class_name1}-->を入力して下さい。</span>
293                                <!--{/if}-->
294                            </dd>
295                            <!--▲規格1-->
296                        <!--{/if}-->
297   
298                        <!--{if $tpl_classcat_find2}-->
299                            <!--▼規格2-->
300                            <dt><!--{$tpl_class_name2|escape}--></dt>
301                            <dd>
302                                <select name="classcategory_id2"
303                                    style="<!--{$arrErr.classcategory_id2|sfGetErrorColor}-->"
304                                    onchange="fnCheckStock(this.form);"
305                                >
306                                </select>
307                                <!--{if $arrErr.classcategory_id2 != ""}-->
308                                    <br /><span class="attention">※ <!--{$tpl_class_name2}-->を入力して下さい。</span>
309                                <!--{/if}-->
310                            </dd>
311                            <!--▲規格2-->
312                        <!--{/if}-->
313
314                        <dt>数量</dt>
315                        <dd>
316                            <input type="text" name="quantity" class="box54" value="<!--{$arrForm.quantity.value|default:1}-->" maxlength="<!--{$smarty.const.INT_LEN}-->" style="<!--{$arrErr.quantity|sfGetErrorColor}-->" />
317                            <!--{if $arrErr.quantity != ""}-->
318                                <br /><span class="attention"><!--{$arrErr.quantity}--></span>
319                            <!--{/if}-->
320                        </dd>
321                    </dl>
322                <!--{/if}-->
323               
324                <div class="btn">
325                    <!--{if $smarty.const.OPTION_FAVOFITE_PRODUCT == 1 && $tpl_login === true}-->
326                        <div>
327                            <!--{assign var=add_favorite value="add_favorite`$product_id`"}-->
328                            <!--{if $arrErr[$add_favorite]}--><div class="attention"><!--{$arrErr[$add_favorite]}--></div><!--{/if}-->
329                            <!--{if !$arrProduct.favorite_count}-->
330                                <a
331                                    href="javascript:fnModeSubmit('add_favorite','favorite_product_id','<!--{$arrProduct.product_id|escape}-->');"
332                                    onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/add_favolite_product_on.gif','add_favolite_product');"
333                                    onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/add_favolite_product.gif','add_favolite_product');"
334                                ><img src="<!--{$TPL_DIR}-->img/products/add_favolite_product.gif" width="115" height="20" alt="お気に入りに追加" name="add_favolite_product" id="add_favolite_product" /></a>
335                            <!--{else}-->
336                                <img src="<!--{$TPL_DIR}-->img/products/add_favolite_product_on.gif" width="115" height="20" alt="お気に入り登録済" name="add_favolite_product" id="add_favolite_product" />
337                            <!--{/if}-->
338                        </div>
339                    <!--{/if}-->
340                   
341                    <!--{if $tpl_stock_find}-->
342                        <div id="cartbtn_default">
343                            <!--★カゴに入れる★-->
344                            <div>
345                                <a href="javascript:void(document.form1.submit())" onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_cartin_on.gif','cart');" onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_cartin.gif','cart');">
346                                    <img src="<!--{$TPL_DIR}-->img/products/b_cartin.gif" width="115" height="25" alt="カゴに入れる" name="cart" id="cart" /></a>
347                            </div>
348                            <!--{if 'sfGMODetailDisplay'|function_exists}--><!--{* GMOワンクリック *}-->
349                                <!--{'sfGMODetailDisplay'|call_user_func}-->
350                            <!--{/if}-->
351                        </div>
352                        <div class="attention" id="cartbtn_dynamic"></div>
353                    <!--{else}-->
354                        <div class="attention">申し訳ございませんが、只今品切れ中です。</div>
355                    <!--{/if}-->
356                </div>
357            </form>
358            <!--▲買い物かご-->
359
360        </div>
361    </div>
362    <!--{* オペビルダー用 *}-->
363    <!--{if "sfViewDetailOpe"|function_exists === TRUE}-->
364        <!--{include file=`$smarty.const.MODULE_PATH`mdl_opebuilder/detail_ope_view.tpl}-->
365    <!--{/if}-->
366    <!--詳細ここまで-->
367
368    <!--▼サブコメント-->
369    <!--{section name=cnt loop=$smarty.const.PRODUCTSUB_MAX}-->
370        <!--{assign var=key value="sub_title`$smarty.section.cnt.index+1`"}-->
371        <!--{if $arrProduct[$key] != ""}-->
372            <div class="subarea">
373                <h3><!--★サブタイトル★--><!--{$arrProduct[$key]|escape}--></h3>
374                <!--{assign var=ckey value="sub_comment`$smarty.section.cnt.index+1`"}-->
375               
376                <div class="subtext"><!--★サブテキスト★--><!--{$arrProduct[$ckey]|nl2br_html}--></div>
377               
378                <!--▼サブ画像-->
379                <!--{assign var=key value="sub_image`$smarty.section.cnt.index+1`"}-->
380                <!--{assign var=lkey value="sub_large_image`$smarty.section.cnt.index+1`"}-->
381                <!--{if $arrProduct[$key]|strlen >= 1}-->
382                    <div class="subphotoimg">
383                        <a
384                            <!--{if $arrProduct[$lkey]|strlen >= 1}-->
385                                href="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrProduct[$lkey]|escape}-->"
386                                class="expansion"
387                                onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion_on.gif', 'expansion_<!--{$lkey|escape}-->');"
388                                onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion.gif', 'expansion_<!--{$lkey|escape}-->');"
389                                target="_blank"
390                            <!--{/if}-->
391                        >
392                            <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrProduct.name|escape}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" /><br />
393                            <!--{if $arrProduct[$lkey]|strlen >= 1}-->
394                                <img src="<!--{$TPL_DIR}-->img/products/b_expansion.gif" width="85" height="13" alt="画像を拡大する" id="expansion_<!--{$lkey|escape}-->" />
395                            <!--{/if}-->
396                        </a>
397                    </div>
398                <!--{/if}-->
399                <!--▲サブ画像-->
400            </div>
401        <!--{/if}-->
402    <!--{/section}-->
403    <!--▲サブコメント-->
404
405
406    <!--この商品に対するお客様の声-->
407    <div id="customervoicearea">
408        <h2><img src="<!--{$TPL_DIR}-->img/products/title_voice.jpg" width="580" height="30" alt="この商品に対するお客様の声" /></h2>
409
410        <!--{if count($arrReview) < $smarty.const.REVIEW_REGIST_MAX}-->
411            <!--★新規コメントを書き込む★-->
412            <a href="./review.php"
413                 onclick="win02('./review.php?product_id=<!--{$arrProduct.product_id}-->','review','580','580'); return false;"
414                 onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_comment_on.gif','review');"
415                 onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_comment.gif','review');" target="_blank">
416                <img src="<!--{$TPL_DIR}-->img/products/b_comment.gif" width="150" height="22" alt="新規コメントを書き込む" name="review" id="review" /></a>
417        <!--{/if}-->
418
419        <!--{if count($arrReview) > 0}-->
420            <ul>
421                <!--{section name=cnt loop=$arrReview}-->
422                    <li>
423                        <p class="voicedate"><!--{$arrReview[cnt].create_date|sfDispDBDate:false}--> 投稿者:<!--{if $arrReview[cnt].reviewer_url}--><a href="<!--{$arrReview[cnt].reviewer_url}-->" target="_blank"><!--{$arrReview[cnt].reviewer_name|escape}--></a><!--{else}--><!--{$arrReview[cnt].reviewer_name|escape}--><!--{/if}--> おすすめレベル:<span class="recommend_level"><!--{assign var=level value=$arrReview[cnt].recommend_level}--><!--{$arrRECOMMEND[$level]|escape}--></span></p>
424                        <p class="voicetitle"><!--{$arrReview[cnt].title|escape}--></p>
425                        <p class="voicecomment"><!--{$arrReview[cnt].comment|escape|nl2br}--></p>
426                    </li>
427                <!--{/section}-->
428            </ul>
429        <!--{/if}-->
430    </div>
431    <!--お客様の声ここまで-->
432
433
434    <!--{if $arrTrackbackView == "ON"}-->
435        <!--▼トラックバック-->
436        <div id="trackbackarea">
437            <h2><img src="<!--{$TPL_DIR}-->img/products/title_tb.jpg" width="580" height="30" alt="この商品に対するトラックバック" /></h2>
438            <h3>この商品のトラックバック先URL</h3>
439            <input type="text" name="trackback" value="<!--{$trackback_url}-->" size="100" class="box500" />
440
441            <!--{if $arrTrackback}-->
442                <ul>
443                <!--{section name=cnt loop=$arrTrackback}-->
444                    <li><strong><!--{$arrTrackback[cnt].create_date|sfDispDBDate:false}--> <a href="<!--{$arrTrackback[cnt].url}-->" target="_blank"><!--{$arrTrackback[cnt].title|escape}--></a> from <!--{$arrTrackback[cnt].blog_name|escape}--></strong>
445                        <p><!--{$arrTrackback[cnt].excerpt|escape|mb_strimwidth:0:200:"..."}--></p></li>
446                <!--{/section}-->
447                </ul>
448            <!--{/if}-->
449        </div>
450        <!--▲トラックバック-->
451    <!--{/if}-->
452
453
454    <!--▼関連商品-->
455    <!--{if $arrRecommend}-->
456        <div id="whoboughtarea">
457            <h2><img src="<!--{$TPL_DIR}-->img/products/title_recommend.jpg" width="580" height="30" alt="その他のオススメ商品(関連商品)" /></h2>
458            <div class="whoboughtblock">
459
460            <!--{section name=cnt loop=$arrRecommend}-->
461                <!--{if ($smarty.section.cnt.index % 2) == 0}-->
462                <!--{if $arrRecommend[cnt].product_id}-->
463                <!-- 左列 -->
464                <div class="whoboughtleft">
465                   
466                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->">
467                        <img src="<!--{$smarty.const.URL_DIR}-->resize_image.php?image=<!--{$arrRecommend[cnt].main_list_image|sfNoImageMainList|escape}-->&amp;width=65&amp;height=65" alt="<!--{$arrRecommend[cnt].name|escape}-->" /></a>
468
469                    <!--{assign var=price02_min value=`$arrRecommend[cnt].price02_min`}-->
470                    <!--{assign var=price02_max value=`$arrRecommend[cnt].price02_max`}-->
471                    <h3><a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->"><!--{$arrRecommend[cnt].name|escape}--></a></h3>
472
473                    <p class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>:<span class="price">
474                        <!--{if $price02_min == $price02_max}-->
475                            <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
476                        <!--{else}-->
477                            <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
478                        <!--{/if}-->円</span></p>
479                    <p class="mini"><!--{$arrRecommend[cnt].comment|escape|nl2br}--></p>
480                </div>
481                <!-- 左列 -->
482                <!--{/if}-->
483                <!--{/if}-->
484
485                <!--{if ($smarty.section.cnt.index % 2) != 0}-->
486                <!--{* assign var=nextCnt value=$smarty.section.cnt.index+1 *}-->
487                <!--{if $arrRecommend[cnt].product_id}-->
488                <!-- 右列 -->
489                <div class="whoboughtright">
490                   
491                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->">
492                        <img src="<!--{$smarty.const.URL_DIR}-->resize_image.php?image=<!--{$arrRecommend[cnt].main_list_image|sfNoImageMainList|escape}-->&amp;width=65&amp;height=65" alt="<!--{$arrRecommend[cnt].name|escape}-->" /></a>
493                   
494                    <!--{assign var=price02_min value=`$arrRecommend[cnt].price02_min`}-->
495                    <!--{assign var=price02_max value=`$arrRecommend[cnt].price02_max`}-->
496                    <h3><a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->"><!--{$arrRecommend[cnt].name|escape}--></a></h3>
497
498                    <p class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>:<span class="price">
499
500                        <!--{if $price02_min == $price02_max}-->
501                            <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
502                        <!--{else}-->
503                            <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
504                        <!--{/if}-->円</span></p>
505                    <p class="mini"><!--{$arrRecommend[cnt].comment|escape|nl2br}--></p>
506                </div>
507                <!-- 右列 -->
508            <!--{/if}-->
509            <!--{/if}-->
510
511            <!--{if $smarty.section.cnt.last}-->
512            </div>
513            <!--{/if}-->
514        <!--{/section}-->
515        </div>
516    <!--{/if}-->
517    <!--▲関連商品-->
518   
519</div>
520<!--▲CONTENTS-->
Note: See TracBrowser for help on using the repository browser.