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

Revision 20036, 25.4 KB checked in by yomoro, 13 years ago (diff)

#930 フロント側対応 ロジック側ではお気に入りに登録しているかしていないか(favorite_count)、現状判別処理をしていないようなので、どこかにその部分を記載すればよいかと考えていますが、SC_Productでよいでしょうか?どなたか方針をくださると有り難いです。

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