我找到了如何在产品清单上显示含税和不含税的价格。但是当有特定的价格时,旧的价格与税收相同。它显示旧的价格税,即使是含税税的价格。 例如:549,0€HT(733.20€) - 659.88€TTC(733.20€)
{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。
答案 0 :(得分:0)
你在product-list.tpl中已有两个smarty变量,你也可以在新变量中使用它并拆分税值
{assign var='totalTax' value=$total_products_wt - $total_products}
{displayWtPriceWithCurrency price=$totalTax currency=$currency}</span>