source: branches/version-2_5-dev/data/Smarty/templates/sphone/products/detail.tpl @ 19805

Revision 19805, 26.1 KB checked in by Seasoft, 13 years ago (diff)

#834(パラメータの定数名に「URL」を含むにもかかわらず、パスのみのものがある) 一部実装

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="<!--{$smarty.const.URL_PATH}-->js/jquery.fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
23<script type="text/javascript" src="<!--{$smarty.const.URL_PATH}-->js/jquery.fancybox/jquery.fancybox-1.3.4.pack.js"></script>
24<link rel="stylesheet" href="<!--{$smarty.const.URL_PATH}-->js/jquery.fancybox/jquery.fancybox-1.3.4.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    eleDynamic = document.getElementById('product_class_id');
134    if (
135           classcat2
136        && typeof classcat2.product_class_id != 'undefined'
137        && String(classcat2.product_class_id).length >= 1
138    ) {
139        eleDynamic.value = classcat2.product_class_id;
140    } else {
141        eleDynamic.value = ''
142    }
143    // 商品種別
144    eleDynamic = document.getElementById('product_type');
145    if (
146           classcat2
147        && typeof classcat2.product_type != 'undefined'
148        && String(classcat2.product_type).length >= 1
149    ) {
150        eleDynamic.value = classcat2.product_type;
151    } else {
152        eleDynamic.value = ''
153    }
154}
155$(document).ready(function() {
156    $("a.expansion").fancybox({
157    });
158});
159//]]>
160</script>
161
162<!--▼CONTENTS-->
163<div id="undercolumn" class="product product_detail">
164
165    <!--★タイトル★-->
166    <h2 class="title"><!--{$tpl_subtitle|h}--></h2>
167
168    <div id="detailarea">
169        <div id="detailphotoblock">
170
171            <!--{assign var=key value="main_image"}-->
172
173            <!--★画像★-->
174            <a
175                <!--{if $arrProduct.main_large_image|strlen >= 1}-->
176                    href="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrProduct.main_large_image|h}-->"
177                    class="expansion"
178                    onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion_on.gif','expansion01');"
179                    onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion.gif','expansion01');"
180                    target="_blank"
181                <!--{/if}-->
182            >
183                <img src="<!--{$arrFile[$key].filepath|h}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" alt="<!--{$arrProduct.name|h}-->" class="picture" /><br />
184                <!--★拡大する★-->
185                <!--{if $arrProduct.main_large_image|strlen >= 1}-->
186                    <img src="<!--{$TPL_DIR}-->img/products/b_expansion.gif" width="85" height="13" alt="画像を拡大する" name="expansion01" id="expansion01" />
187                <!--{/if}-->
188            </a>
189        </div>
190
191        <div id="detailrightblock">
192            <!--▼商品ステータス-->
193            <!--{assign var=ps value=$productStatus[$smarty.get.product_id]}-->
194            <!--{if count($ps) > 0}-->
195                <ul class="status_icon">
196                    <!--{foreach from=$ps item=status}-->
197                    <li>
198                        <img src="<!--{$TPL_DIR}--><!--{$arrSTATUS_IMAGE[$status]}-->" width="65" height="17" alt="<!--{$arrSTATUS[$status]}-->" id="icon<!--{$status}-->" />
199                    </li>
200                    <!--{/foreach}-->
201                </ul>
202            <!--{/if}-->
203            <!--▲商品ステータス-->
204
205            <!--★ダウンロード販売★-->
206            <!--{if $arrProduct.down == 2}-->
207                <div><font color="red">本商品はダウンロード販売となります。<br /> 購入後はMYページの購入履歴からダウンロード可能です。</font></div><br />
208            <!--{/if}-->
209
210            <table>
211                <tr>
212                    <th colspan="2">
213                        <!--★商品名★-->
214                        <h2><!--{$arrProduct.name|h}--></h2>
215                    </th>
216                </tr>
217                 <tr>
218                    <th>
219                        <div class="product_code">商品コード:</div>
220                    </th>
221                     <td>
222                     <span id="product_code_default">
223                    <!--{if $arrProduct.product_code_min == $arrProduct.product_code_max}-->
224                        <!--{$arrProduct.product_code_min|h}-->
225                    <!--{else}-->
226                        <!--{$arrProduct.product_code_min|h}-->~<!--{$arrProduct.product_code_max|h}-->
227                    <!--{/if}-->
228                </span><span id="product_code_dynamic"></span>
229                     </td>
230                </tr>
231                <tr>
232                    <th>
233                        <!--★販売価格★-->
234                        <div class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span></div>
235                    </th>
236                    <td>
237                        <span class="price">
238                            <span id="price02_default">
239                                <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
240                                    <!--{$arrProduct.price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
241                                <!--{else}-->
242                                    <!--{$arrProduct.price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$arrProduct.price02_max|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
243                                <!--{/if}-->
244                            </span><span id="price02_dynamic"></span>
245                            円
246                        </span>
247                    </td>
248                </tr>
249                <!--★通常価格★-->
250                <!--{if $arrProduct.price01_max > 0}-->
251                <tr>
252                    <th>
253                        <div class="normal_price">
254                        <!--{$smarty.const.NORMAL_PRICE_TITLE}-->:
255                        </div>
256                    </th>
257                    <td>
258                        <span class="price">
259                            <span id="price01_default">
260                                <!--{if $arrProduct.price01_min == $arrProduct.price01_max}-->
261                                    <!--{$arrProduct.price01_min|number_format}-->
262                                <!--{else}-->
263                                    <!--{$arrProduct.price01_min|number_format}-->~<!--{$arrProduct.price01_max|number_format}-->
264                                <!--{/if}-->
265                            </span><span id="price01_dynamic"></span>
266                            円
267                        </span>
268                    </td>
269                </tr>   
270                <!--{/if}-->
271
272           
273                <!--★ポイント★-->
274                <!--{if $smarty.const.USE_POINT !== false}-->
275                <tr>
276                    <th>
277                        <span class="price">ポイント:</span>
278                    </th>
279                    <td>
280                        <span id="point_default">
281                            <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
282                                <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
283                            <!--{else}-->
284                                <!--{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}-->
285                                    <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
286                                <!--{else}-->
287                                    <!--{$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}-->
288                                <!--{/if}-->
289                            <!--{/if}-->
290                            </span><span id="point_dynamic">
291                            Pt
292                        </span>
293                    </td>
294                </tr>
295                <!--{/if}-->
296
297                <!--▼メーカーURL-->
298                <!--{if $arrProduct.comment1|strlen >= 1}-->
299                <tr>
300                    <th>
301                        <span class="comment1">メーカーURL:
302                    </th>
303                    <td>
304                            <a href="<!--{$arrProduct.comment1|h}-->">
305                                <!--{$arrProduct.comment1|h}--></a>
306                    </td>
307                </tr>
308                <!--{/if}-->
309                <!--▲メーカーURL-->
310
311                <!--★関連カテゴリ★-->
312                <tr>
313                    <th>
314                        <div class="relative_cat">関連カテゴリ:</div>
315                    </th>
316                    <td>
317                        <!--{section name=r loop=$arrRelativeCat}-->
318                        <p>
319                            <!--{section name=s loop=$arrRelativeCat[r]}-->
320                            <a href="<!--{$smarty.const.SMARTPHONE_URL_PATH}-->products/list.php?category_id=<!--{$arrRelativeCat[r][s].category_id}-->"><!--{$arrRelativeCat[r][s].category_name}--></a>
321                            <!--{if !$smarty.section.s.last}--><!--{$smarty.const.SEPA_CATNAVI}--><!--{/if}-->
322                            <!--{/section}-->
323                        </p>
324                        <!--{/section}-->
325                    </td>
326                </tr>
327                <tr>
328                    <td colspan="2">
329                            <!--★詳細メインコメント★-->
330                            <div class="main_comment"><!--{$arrProduct.main_comment|nl2br_html}--></div>
331                    </td>
332                </tr>
333            </table>
334
335            <!--▼買い物かご-->
336            <form name="form1" id="form1" method="post" action="?">
337                <input type="hidden" name="mode" value="cart" />
338                <input type="hidden" name="product_id" value="<!--{$tpl_product_id}-->" />
339                <input type="hidden" name="product_class_id" value="<!--{$tpl_product_class_id}-->" id="product_class_id" />
340                <input type="hidden" name="product_type" value="<!--{$tpl_product_type}-->" id="product_type" />
341                <input type="hidden" name="favorite_product_id" value="" />
342
343                <!--{if $tpl_stock_find}-->
344                    <dl>
345                        <!--{if $tpl_classcat_find1}-->
346                            <!--▼規格1-->
347                            <dt><!--{$tpl_class_name1|h}--></dt>
348                            <dd>
349                                <select name="classcategory_id1"
350                                    style="<!--{$arrErr.classcategory_id1|sfGetErrorColor}-->"
351                                    onchange="fnSetClassCategories(this.form);"
352                                >
353                                    <!--{html_options options=$arrClassCat1 selected=$arrForm.classcategory_id1.value}-->
354                                </select>
355                                <!--{if $arrErr.classcategory_id1 != ""}-->
356                                    <br /><span class="attention">※ <!--{$tpl_class_name1}-->を入力して下さい。</span>
357                                <!--{/if}-->
358                            </dd>
359                            <!--▲規格1-->
360                        <!--{/if}-->
361
362                        <!--{if $tpl_classcat_find2}-->
363                            <!--▼規格2-->
364                            <dt><!--{$tpl_class_name2|h}--></dt>
365                            <dd>
366                                <select name="classcategory_id2"
367                                    style="<!--{$arrErr.classcategory_id2|sfGetErrorColor}-->"
368                                    onchange="fnCheckStock(this.form);"
369                                >
370                                </select>
371                                <!--{if $arrErr.classcategory_id2 != ""}-->
372                                    <br /><span class="attention">※ <!--{$tpl_class_name2}-->を入力して下さい。</span>
373                                <!--{/if}-->
374                            </dd>
375                            <!--▲規格2-->
376                        <!--{/if}-->
377
378                        <dt>数量</dt>
379                        <dd>
380                            <input type="text" name="quantity" class="box54" value="<!--{$arrForm.quantity.value|default:1}-->" maxlength="<!--{$smarty.const.INT_LEN}-->" style="<!--{$arrErr.quantity|sfGetErrorColor}-->" />
381                            <!--{if $arrErr.quantity != ""}-->
382                                <br /><span class="attention"><!--{$arrErr.quantity}--></span>
383                            <!--{/if}-->
384                        </dd>
385                    </dl>
386                <!--{/if}-->
387
388                <div class="btn">
389                    <!--{if $smarty.const.OPTION_FAVOFITE_PRODUCT == 1 && $tpl_login === true}-->
390                        <div>
391                            <!--{assign var=add_favorite value="add_favorite`$product_id`"}-->
392                            <!--{if $arrErr[$add_favorite]}--><div class="attention"><!--{$arrErr[$add_favorite]}--></div><!--{/if}-->
393                            <!--{if !$arrProduct.favorite_count}-->
394                                <a
395                                    href="javascript:fnModeSubmit('add_favorite','favorite_product_id','<!--{$arrProduct.product_id|h}-->');"
396                                    onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/add_favolite_product_on.gif','add_favolite_product');"
397                                    onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/add_favolite_product.gif','add_favolite_product');"
398                                ><img src="<!--{$TPL_DIR}-->img/products/add_favolite_product.gif" width="115" height="20" alt="お気に入りに追加" name="add_favolite_product" id="add_favolite_product" /></a>
399                            <!--{else}-->
400                                <img src="<!--{$TPL_DIR}-->img/products/add_favolite_product_on.gif" width="115" height="20" alt="お気に入り登録済" name="add_favolite_product" id="add_favolite_product" />
401                            <!--{/if}-->
402                        </div>
403                    <!--{/if}-->
404
405                    <!--{if $tpl_stock_find}-->
406                        <div id="cartbtn_default">
407                            <!--★カゴに入れる★-->
408                            <div>
409                                <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');" class="spbtn spbtn-agree">
410                                    カゴに入れる
411                                </a>
412                            </div>
413                            <!--{if 'sfGMODetailDisplay'|function_exists}--><!--{* GMOワンクリック *}-->
414                                <!--{'sfGMODetailDisplay'|call_user_func}-->
415                            <!--{/if}-->
416                        </div>
417                        <div class="attention" id="cartbtn_dynamic"></div>
418                    <!--{else}-->
419                        <div class="attention">申し訳ございませんが、只今品切れ中です。</div>
420                    <!--{/if}-->
421                </div>
422            </form>
423            <!--▲買い物かご-->
424
425        </div>
426    </div>
427    <!--{* オペビルダー用 *}-->
428    <!--{if "sfViewDetailOpe"|function_exists === TRUE}-->
429        <!--{include file=`$smarty.const.MODULE_REALDIR`mdl_opebuilder/detail_ope_view.tpl}-->
430    <!--{/if}-->
431    <!--詳細ここまで-->
432
433    <!--▼サブコメント-->
434    <!--{section name=cnt loop=$smarty.const.PRODUCTSUB_MAX}-->
435        <!--{assign var=key value="sub_title`$smarty.section.cnt.index+1`"}-->
436        <!--{if $arrProduct[$key] != ""}-->
437            <div class="subarea">
438                <h3><!--★サブタイトル★--><!--{$arrProduct[$key]|h}--></h3>
439                <!--{assign var=ckey value="sub_comment`$smarty.section.cnt.index+1`"}-->
440
441                <div class="subtext"><!--★サブテキスト★--><!--{$arrProduct[$ckey]|nl2br_html}--></div>
442
443                <!--▼サブ画像-->
444                <!--{assign var=key value="sub_image`$smarty.section.cnt.index+1`"}-->
445                <!--{assign var=lkey value="sub_large_image`$smarty.section.cnt.index+1`"}-->
446                <!--{if $arrProduct[$key]|strlen >= 1}-->
447                    <div class="subphotoimg">
448                        <a
449                            <!--{if $arrProduct[$lkey]|strlen >= 1}-->
450                                href="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrProduct[$lkey]|h}-->"
451                                class="expansion"
452                                onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion_on.gif', 'expansion_<!--{$lkey|h}-->');"
453                                onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion.gif', 'expansion_<!--{$lkey|h}-->');"
454                                target="_blank"
455                            <!--{/if}-->
456                        >
457                            <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrProduct.name|h}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" /><br />
458                            <!--{if $arrProduct[$lkey]|strlen >= 1}-->
459                                <img src="<!--{$TPL_DIR}-->img/products/b_expansion.gif" width="85" height="13" alt="画像を拡大する" id="expansion_<!--{$lkey|h}-->" />
460                            <!--{/if}-->
461                        </a>
462                    </div>
463                <!--{/if}-->
464                <!--▲サブ画像-->
465            </div>
466        <!--{/if}-->
467    <!--{/section}-->
468    <!--▲サブコメント-->
469
470    <!--▼関連商品-->
471    <!--{if $arrRecommend}-->
472        <div id="whoboughtarea">
473            <h2>その他のオススメ商品(関連商品)</h2>
474            <div class="whoboughtblock">
475
476            <!--{section name=cnt loop=$arrRecommend}-->
477                <!--{if ($smarty.section.cnt.index % 2) == 0}-->
478                <!--{if $arrRecommend[cnt].product_id}-->
479                <!-- 左列 -->
480                <div class="whoboughtleft">
481
482                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|u}-->">
483                        <img src="<!--{$smarty.const.URL_PATH}-->resize_image.php?image=<!--{$arrRecommend[cnt].main_list_image|sfNoImageMainList|h}-->&amp;width=65&amp;height=65" alt="<!--{$arrRecommend[cnt].name|h}-->" /></a>
484
485                    <div class="whoboughtrightblock">
486                        <!--{assign var=price02_min value=`$arrRecommend[cnt].price02_min`}-->
487                        <!--{assign var=price02_max value=`$arrRecommend[cnt].price02_max`}-->
488                        <h3><a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|u}-->"><!--{$arrRecommend[cnt].name|h}--></a></h3>
489
490                        <p class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>:<span class="price">
491                            <!--{if $price02_min == $price02_max}-->
492                                <!--{$price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
493                            <!--{else}-->
494                                <!--{$price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$price02_max|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
495                            <!--{/if}-->円</span></p>
496                        <p class="mini"><!--{$arrRecommend[cnt].comment|h|nl2br}--></p>
497                    </div>
498                </div>
499                <!-- 左列 -->
500                <!--{/if}-->
501                <!--{/if}-->
502
503                <!--{if ($smarty.section.cnt.index % 2) != 0}-->
504                <!--{* assign var=nextCnt value=$smarty.section.cnt.index+1 *}-->
505                <!--{if $arrRecommend[cnt].product_id}-->
506                <!-- 右列 -->
507                <div class="whoboughtright">
508
509                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|u}-->">
510                        <img src="<!--{$smarty.const.URL_PATH}-->resize_image.php?image=<!--{$arrRecommend[cnt].main_list_image|sfNoImageMainList|h}-->&amp;width=65&amp;height=65" alt="<!--{$arrRecommend[cnt].name|h}-->" /></a>
511
512                    <div class="whoboughtrightblock">
513                        <!--{assign var=price02_min value=`$arrRecommend[cnt].price02_min`}-->
514                        <!--{assign var=price02_max value=`$arrRecommend[cnt].price02_max`}-->
515                        <h3><a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|u}-->"><!--{$arrRecommend[cnt].name|h}--></a></h3>
516
517                        <p class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>:<span class="price">
518
519                            <!--{if $price02_min == $price02_max}-->
520                                <!--{$price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
521                            <!--{else}-->
522                                <!--{$price02_min|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$price02_max|sfCalcIncTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
523                            <!--{/if}-->円</span></p>
524                        <p class="mini"><!--{$arrRecommend[cnt].comment|h|nl2br}--></p>
525                    </div>
526                </div>
527                <!-- 右列 -->
528            <!--{/if}-->
529            <!--{/if}-->
530
531            <!--{if $smarty.section.cnt.last}-->
532            </div>
533            <!--{/if}-->
534        <!--{/section}-->
535        </div>
536    <!--{/if}-->
537    <!--▲関連商品-->
538
539</div>
540<!--▲CONTENTS-->
Note: See TracBrowser for help on using the repository browser.