Warning: Can't use blame annotator:
svn blame failed on branches/comu-ver2/data/Smarty/templates/default/detail.tpl: バイナリファイル 'file:///home/svn/open/branches/comu-ver2/data/Smarty/templates/default/detail.tpl' に対しては blame で各行の最終変更者を計算できません 195004

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

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