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

source: branches/version-2_5-dev/data/Smarty/templates/default/detail.tpl @ 18777

Revision 18777, 26.8 KB checked in by eccuore, 14 years ago (diff)

#792(ダウンロード販売機能) 機能追加

  • 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-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            <!--{if $arrProduct.down == 2}-->
190                <div><font color="red">本商品はダウンロード販売となります。<br /> 購入後はMYページの購入履歴からダウンロード可能です。</font></div><br />
191            <!--{/if}-->
192
193            <!--★商品コード★-->
194            <div>商品コード:
195                <span id="product_code_default">
196                    <!--{if $arrProduct.product_code_min == $arrProduct.product_code_max}-->
197                        <!--{$arrProduct.product_code_min|escape}-->
198                    <!--{else}-->
199                        <!--{$arrProduct.product_code_min|escape}-->~<!--{$arrProduct.product_code_max|escape}-->
200                    <!--{/if}-->
201                </span><span id="product_code_dynamic"></span>
202            </div>
203
204            <!--★商品名★-->
205            <h2><!--{$arrProduct.name|escape}--></h2>
206
207            <!--★販売価格★-->
208            <div class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>:
209                <span class="price">
210                    <span id="price02_default">
211                        <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
212                            <!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
213                        <!--{else}-->
214                            <!--{$arrProduct.price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$arrProduct.price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
215                        <!--{/if}-->
216                    </span><span id="price02_dynamic"></span>
217                    円
218                </span>
219            </div>
220
221            <!--★通常価格★-->
222            <!--{if $arrProduct.price01_max > 0}-->
223                <div class="normal_price">
224                    <!--{$smarty.const.NORMAL_PRICE_TITLE}-->:
225                    <span class="price">
226                        <span id="price01_default">
227                            <!--{if $arrProduct.price01_min == $arrProduct.price01_max}-->
228                                <!--{$arrProduct.price01_min|number_format}-->
229                            <!--{else}-->
230                                <!--{$arrProduct.price01_min|number_format}-->~<!--{$arrProduct.price01_max|number_format}-->
231                            <!--{/if}-->
232                        </span><span id="price01_dynamic"></span>
233                        円
234                    </span>
235                </div>
236            <!--{/if}-->
237
238            <!--★ポイント★-->
239            <!--{if $smarty.const.USE_POINT !== false}-->
240                <div><span class="price">ポイント:
241                    <span id="point_default">
242                        <!--{if $arrProduct.price02_min == $arrProduct.price02_max}-->
243                            <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
244                        <!--{else}-->
245                            <!--{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}-->
246                                <!--{$arrProduct.price02_min|sfPrePoint:$arrProduct.point_rate:$smarty.const.POINT_RULE:$arrProduct.product_id}-->
247                            <!--{else}-->
248                                <!--{$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}-->
249                            <!--{/if}-->
250                        <!--{/if}-->
251                        </span><span id="point_dynamic"></span>
252                        Pt
253                    </span>
254                </div>
255            <!--{/if}-->
256
257            <!--▼メーカーURL-->
258            <!--{if $arrProduct.comment1|strlen >= 1}-->
259                <div><span class="comment1">メーカーURL:
260                    <a href="<!--{$arrProduct.comment1|escape}-->">
261                        <!--{$arrProduct.comment1|escape}--></a>
262                </div>
263            <!--{/if}-->
264            <!--▲メーカーURL-->
265
266            <!--★関連カテゴリ★-->
267            <div class="relative_cat">関連カテゴリ:
268                <!--{section name=r loop=$arrRelativeCat}-->
269                <p>
270                    <!--{section name=s loop=$arrRelativeCat[r]}-->
271                    <a href="<!--{$smarty.const.URL_DIR}-->products/list.php?category_id=<!--{$arrRelativeCat[r][s].category_id}-->"><!--{$arrRelativeCat[r][s].category_name}--></a>
272                    <!--{if !$smarty.section.s.last}--><!--{$smarty.const.SEPA_CATNAVI}--><!--{/if}-->
273                    <!--{/section}-->
274                </p>
275                <!--{/section}-->
276            </div>
277
278            <!--▼買い物かご-->
279            <form name="form1" id="form1" method="post" action="?">
280                <input type="hidden" name="mode" value="cart" />
281                <input type="hidden" name="product_id" value="<!--{$tpl_product_id}-->" />
282                <input type="hidden" name="favorite_product_id" value="" />
283
284                <!--{if $tpl_stock_find}-->
285                    <dl>
286                        <!--{if $tpl_classcat_find1}-->
287                            <!--▼規格1-->
288                            <dt><!--{$tpl_class_name1|escape}--></dt>
289                            <dd>
290                                <select name="classcategory_id1"
291                                    style="<!--{$arrErr.classcategory_id1|sfGetErrorColor}-->"
292                                    onchange="fnSetClassCategories(this.form);"
293                                >
294                                    <!--{html_options options=$arrClassCat1 selected=$arrForm.classcategory_id1.value}-->
295                                </select>
296                                <!--{if $arrErr.classcategory_id1 != ""}-->
297                                    <br /><span class="attention">※ <!--{$tpl_class_name1}-->を入力して下さい。</span>
298                                <!--{/if}-->
299                            </dd>
300                            <!--▲規格1-->
301                        <!--{/if}-->
302
303                        <!--{if $tpl_classcat_find2}-->
304                            <!--▼規格2-->
305                            <dt><!--{$tpl_class_name2|escape}--></dt>
306                            <dd>
307                                <select name="classcategory_id2"
308                                    style="<!--{$arrErr.classcategory_id2|sfGetErrorColor}-->"
309                                    onchange="fnCheckStock(this.form);"
310                                >
311                                </select>
312                                <!--{if $arrErr.classcategory_id2 != ""}-->
313                                    <br /><span class="attention">※ <!--{$tpl_class_name2}-->を入力して下さい。</span>
314                                <!--{/if}-->
315                            </dd>
316                            <!--▲規格2-->
317                        <!--{/if}-->
318
319                        <dt>数量</dt>
320                        <dd>
321                            <input type="text" name="quantity" class="box54" value="<!--{$arrForm.quantity.value|default:1}-->" maxlength="<!--{$smarty.const.INT_LEN}-->" style="<!--{$arrErr.quantity|sfGetErrorColor}-->" />
322                            <!--{if $arrErr.quantity != ""}-->
323                                <br /><span class="attention"><!--{$arrErr.quantity}--></span>
324                            <!--{/if}-->
325                        </dd>
326                    </dl>
327                <!--{/if}-->
328
329                <div class="btn">
330                    <!--{if $smarty.const.OPTION_FAVOFITE_PRODUCT == 1 && $tpl_login === true}-->
331                        <div>
332                            <!--{assign var=add_favorite value="add_favorite`$product_id`"}-->
333                            <!--{if $arrErr[$add_favorite]}--><div class="attention"><!--{$arrErr[$add_favorite]}--></div><!--{/if}-->
334                            <!--{if !$arrProduct.favorite_count}-->
335                                <a
336                                    href="javascript:fnModeSubmit('add_favorite','favorite_product_id','<!--{$arrProduct.product_id|escape}-->');"
337                                    onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/add_favolite_product_on.gif','add_favolite_product');"
338                                    onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/add_favolite_product.gif','add_favolite_product');"
339                                ><img src="<!--{$TPL_DIR}-->img/products/add_favolite_product.gif" width="115" height="20" alt="お気に入りに追加" name="add_favolite_product" id="add_favolite_product" /></a>
340                            <!--{else}-->
341                                <img src="<!--{$TPL_DIR}-->img/products/add_favolite_product_on.gif" width="115" height="20" alt="お気に入り登録済" name="add_favolite_product" id="add_favolite_product" />
342                            <!--{/if}-->
343                        </div>
344                    <!--{/if}-->
345
346                    <!--{if $tpl_stock_find}-->
347                        <div id="cartbtn_default">
348                            <!--★カゴに入れる★-->
349                            <div>
350                                <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');">
351                                    <img src="<!--{$TPL_DIR}-->img/products/b_cartin.gif" width="115" height="25" alt="カゴに入れる" name="cart" id="cart" /></a>
352                            </div>
353                            <!--{if 'sfGMODetailDisplay'|function_exists}--><!--{* GMOワンクリック *}-->
354                                <!--{'sfGMODetailDisplay'|call_user_func}-->
355                            <!--{/if}-->
356                        </div>
357                        <div class="attention" id="cartbtn_dynamic"></div>
358                    <!--{else}-->
359                        <div class="attention">申し訳ございませんが、只今品切れ中です。</div>
360                    <!--{/if}-->
361                </div>
362            </form>
363            <!--▲買い物かご-->
364
365        </div>
366    </div>
367    <!--{* オペビルダー用 *}-->
368    <!--{if "sfViewDetailOpe"|function_exists === TRUE}-->
369        <!--{include file=`$smarty.const.MODULE_PATH`mdl_opebuilder/detail_ope_view.tpl}-->
370    <!--{/if}-->
371    <!--詳細ここまで-->
372
373    <!--▼サブコメント-->
374    <!--{section name=cnt loop=$smarty.const.PRODUCTSUB_MAX}-->
375        <!--{assign var=key value="sub_title`$smarty.section.cnt.index+1`"}-->
376        <!--{if $arrProduct[$key] != ""}-->
377            <div class="subarea">
378                <h3><!--★サブタイトル★--><!--{$arrProduct[$key]|escape}--></h3>
379                <!--{assign var=ckey value="sub_comment`$smarty.section.cnt.index+1`"}-->
380
381                <div class="subtext"><!--★サブテキスト★--><!--{$arrProduct[$ckey]|nl2br_html}--></div>
382
383                <!--▼サブ画像-->
384                <!--{assign var=key value="sub_image`$smarty.section.cnt.index+1`"}-->
385                <!--{assign var=lkey value="sub_large_image`$smarty.section.cnt.index+1`"}-->
386                <!--{if $arrProduct[$key]|strlen >= 1}-->
387                    <div class="subphotoimg">
388                        <a
389                            <!--{if $arrProduct[$lkey]|strlen >= 1}-->
390                                href="<!--{$smarty.const.IMAGE_SAVE_URL}--><!--{$arrProduct[$lkey]|escape}-->"
391                                class="expansion"
392                                onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion_on.gif', 'expansion_<!--{$lkey|escape}-->');"
393                                onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_expansion.gif', 'expansion_<!--{$lkey|escape}-->');"
394                                target="_blank"
395                            <!--{/if}-->
396                        >
397                            <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrProduct.name|escape}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" /><br />
398                            <!--{if $arrProduct[$lkey]|strlen >= 1}-->
399                                <img src="<!--{$TPL_DIR}-->img/products/b_expansion.gif" width="85" height="13" alt="画像を拡大する" id="expansion_<!--{$lkey|escape}-->" />
400                            <!--{/if}-->
401                        </a>
402                    </div>
403                <!--{/if}-->
404                <!--▲サブ画像-->
405            </div>
406        <!--{/if}-->
407    <!--{/section}-->
408    <!--▲サブコメント-->
409
410
411    <!--この商品に対するお客様の声-->
412    <div id="customervoicearea">
413        <h2><img src="<!--{$TPL_DIR}-->img/products/title_voice.jpg" width="580" height="30" alt="この商品に対するお客様の声" /></h2>
414
415        <!--{if count($arrReview) < $smarty.const.REVIEW_REGIST_MAX}-->
416            <!--★新規コメントを書き込む★-->
417            <a href="./review.php"
418                 onclick="win02('./review.php?product_id=<!--{$arrProduct.product_id}-->','review','580','580'); return false;"
419                 onmouseover="chgImg('<!--{$TPL_DIR}-->img/products/b_comment_on.gif','review');"
420                 onmouseout="chgImg('<!--{$TPL_DIR}-->img/products/b_comment.gif','review');" target="_blank">
421                <img src="<!--{$TPL_DIR}-->img/products/b_comment.gif" width="150" height="22" alt="新規コメントを書き込む" name="review" id="review" /></a>
422        <!--{/if}-->
423
424        <!--{if count($arrReview) > 0}-->
425            <ul>
426                <!--{section name=cnt loop=$arrReview}-->
427                    <li>
428                        <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>
429                        <p class="voicetitle"><!--{$arrReview[cnt].title|escape}--></p>
430                        <p class="voicecomment"><!--{$arrReview[cnt].comment|escape|nl2br}--></p>
431                    </li>
432                <!--{/section}-->
433            </ul>
434        <!--{/if}-->
435    </div>
436    <!--お客様の声ここまで-->
437
438
439    <!--{if $arrTrackbackView == "ON"}-->
440        <!--▼トラックバック-->
441        <div id="trackbackarea">
442            <h2><img src="<!--{$TPL_DIR}-->img/products/title_tb.jpg" width="580" height="30" alt="この商品に対するトラックバック" /></h2>
443            <h3>この商品のトラックバック先URL</h3>
444            <input type="text" name="trackback" value="<!--{$trackback_url}-->" size="100" class="box500" />
445
446            <!--{if $arrTrackback}-->
447                <ul>
448                <!--{section name=cnt loop=$arrTrackback}-->
449                    <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>
450                        <p><!--{$arrTrackback[cnt].excerpt|escape|mb_strimwidth:0:200:"..."}--></p></li>
451                <!--{/section}-->
452                </ul>
453            <!--{/if}-->
454        </div>
455        <!--▲トラックバック-->
456    <!--{/if}-->
457
458
459    <!--▼関連商品-->
460    <!--{if $arrRecommend}-->
461        <div id="whoboughtarea">
462            <h2><img src="<!--{$TPL_DIR}-->img/products/title_recommend.jpg" width="580" height="30" alt="その他のオススメ商品(関連商品)" /></h2>
463            <div class="whoboughtblock">
464
465            <!--{section name=cnt loop=$arrRecommend}-->
466                <!--{if ($smarty.section.cnt.index % 2) == 0}-->
467                <!--{if $arrRecommend[cnt].product_id}-->
468                <!-- 左列 -->
469                <div class="whoboughtleft">
470
471                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->">
472                        <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>
473
474                    <!--{assign var=price02_min value=`$arrRecommend[cnt].price02_min`}-->
475                    <!--{assign var=price02_max value=`$arrRecommend[cnt].price02_max`}-->
476                    <h3><a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->"><!--{$arrRecommend[cnt].name|escape}--></a></h3>
477
478                    <p class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>:<span class="price">
479                        <!--{if $price02_min == $price02_max}-->
480                            <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
481                        <!--{else}-->
482                            <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
483                        <!--{/if}-->円</span></p>
484                    <p class="mini"><!--{$arrRecommend[cnt].comment|escape|nl2br}--></p>
485                </div>
486                <!-- 左列 -->
487                <!--{/if}-->
488                <!--{/if}-->
489
490                <!--{if ($smarty.section.cnt.index % 2) != 0}-->
491                <!--{* assign var=nextCnt value=$smarty.section.cnt.index+1 *}-->
492                <!--{if $arrRecommend[cnt].product_id}-->
493                <!-- 右列 -->
494                <div class="whoboughtright">
495
496                    <a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->">
497                        <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>
498
499                    <!--{assign var=price02_min value=`$arrRecommend[cnt].price02_min`}-->
500                    <!--{assign var=price02_max value=`$arrRecommend[cnt].price02_max`}-->
501                    <h3><a href="<!--{$smarty.const.DETAIL_P_HTML}--><!--{$arrRecommend[cnt].product_id|escape:url}-->"><!--{$arrRecommend[cnt].name|escape}--></a></h3>
502
503                    <p class="sale_price"><!--{$smarty.const.SALE_PRICE_TITLE}--><span class="mini">(税込)</span>:<span class="price">
504
505                        <!--{if $price02_min == $price02_max}-->
506                            <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
507                        <!--{else}-->
508                            <!--{$price02_min|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->~<!--{$price02_max|sfPreTax:$arrSiteInfo.tax:$arrSiteInfo.tax_rule|number_format}-->
509                        <!--{/if}-->円</span></p>
510                    <p class="mini"><!--{$arrRecommend[cnt].comment|escape|nl2br}--></p>
511                </div>
512                <!-- 右列 -->
513            <!--{/if}-->
514            <!--{/if}-->
515
516            <!--{if $smarty.section.cnt.last}-->
517            </div>
518            <!--{/if}-->
519        <!--{/section}-->
520        </div>
521    <!--{/if}-->
522    <!--▲関連商品-->
523
524</div>
525<!--▲CONTENTS-->
Note: See TracBrowser for help on using the repository browser.