Ignore:
Timestamp:
2013/01/30 21:12:01 (13 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
#2044 (無駄な処理を改善する for 2.12.4)

  • 不必要なインスタンス化
  • 不必要な値渡し
Location:
branches/version-2_12-dev/data/Smarty/templates/sphone
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/Smarty/templates/sphone/mypage/favorite.tpl

    r22206 r22486  
    159159                        //販売価格が範囲か判定 
    160160                        if (product.price02_min == product.price02_max) { 
    161                             priceVale = "<!--{$smarty.const.SALE_PRICE_TITLE}-->:" + product.price02_min_tax_format + '円'; 
     161                            priceVale = "<!--{$smarty.const.SALE_PRICE_TITLE}-->:" + product.price02_min_inctax_format + '円'; 
    162162                        } else { 
    163                             priceVale = "<!--{$smarty.const.SALE_PRICE_TITLE}-->:" + product.price02_min_tax_format + '~' + product.price02_max_tax_format + '円'; 
     163                            priceVale = "<!--{$smarty.const.SALE_PRICE_TITLE}-->:" + product.price02_min_inctax_format + '~' + product.price02_max_inctax_format + '円'; 
    164164                        } 
    165165                        price.append(priceVale); 
  • branches/version-2_12-dev/data/Smarty/templates/sphone/products/list.tpl

    r22206 r22486  
    207207                    //販売価格が範囲か判定 
    208208                    if (product.price02_min == product.price02_max) { 
    209                         priceVale = product.price02_min_tax_format + '円'; 
     209                        priceVale = product.price02_min_inctax_format + '円'; 
    210210                    } else { 
    211                         priceVale = product.price02_min_tax_format + '~' + product.price02_max_tax_format + '円'; 
     211                        priceVale = product.price02_min_inctax_format + '~' + product.price02_max_inctax_format + '円'; 
    212212                    } 
    213213                    price.append(priceVale); 
Note: See TracChangeset for help on using the changeset viewer.