0
商品リストに税金の有無にかかわらず価格を表示する方法を見つけました。しかし、特定の価格がある場合、古い価格は税の有無にかかわらず同じです。それは税額控除の価格であっても古い価格税を表示します。 例えば:549,0€HT(733.20€) - 659.88€TTC(733.20€)Prestashop税金の有無にかかわらず価格を表示する
{if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))}
<div class="content_price">
<p style="font-size: 20px;"> {l s='From'}</p>
{if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}
{hook h="displayProductPriceBlock" product=$product type='before_price'}
<div id="prix_ht">
<span class="price product-price">
{if !$priceDisplay}{convertPrice price=$product.price_tax_exc}{/if} {l s='HT.'}
</span>
{if $product.price_without_reduction > 0 && isset($product.specific_prices) && $product.specific_prices && isset($product.specific_prices.reduction) && $product.specific_prices.reduction > 0}
{hook h="displayProductPriceBlock" product=$product type="old_price"}
<span class="old-price product-price">
{displayWtPrice p= $product.price_without_reduction}
</span>
{hook h="displayProductPriceBlock" id_product=$product.id_product type="old_price"}
{if $product.specific_prices.reduction_type == 'percentage'}
<span class="price-percent-reduction">-{$product.specific_prices.reduction * 100}%</span>
{/if}
{/if} </div>
<div id="prix_ttc">
<span class="price product-price">
{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}{l s='TTC'}
</span>
{if $product.price_without_reduction > 0 && isset($product.specific_prices) && $product.specific_prices && isset($product.specific_prices.reduction) && $product.specific_prices.reduction > 0}
{hook h="displayProductPriceBlock" product=$product type="old_price"}
<span class="old-price product-price">
{displayWtPrice p=$product.price_without_reduction}
</span>
{hook h="displayProductPriceBlock" id_product=$product.id_product type="old_price"}
{if $product.specific_prices.reduction_type == 'percentage'}
<span class="price-percent-reduction">-{$product.specific_prices.reduction * 100}%</span>
{/if}
{/if}
{hook h="displayProductPriceBlock" product=$product type="price"}
{hook h="displayProductPriceBlock" product=$product type="unit_price"}
{hook h="displayProductPriceBlock" product=$product type='after_price'}
</div>
{/if}
</div>
私は{displayWtPrice P = product.price_without_reduction}税抜き旧価格のために良いではないと思われます。 しかし、私はする方法を見つけることはありません。私を手伝ってくれますか ?火PSのバージョンは1.6.14です。