Prestashop-在产品页面上同时显示价格(增值税和增值税)

时间:2019-08-27 07:15:38

标签: prestashop smarty prestashop-1.7

我正在使用prestashop建立B2B网站。因此,在客户组设置中,我设置为他们都看到不包括增值税的价格,但是我希望在我的产品页面中同时显示两个价格。我知道$product.price根据客户组设置显示价格,而$product.price_tax_exc显示不包括增值税的价格,但是我想要的是一种显示包含增值税的价格的方法,但是我不知道该怎么做。 我的产品价格在product-add-to-cart.tpl中。 我正在使用prestashop 1.7.5.2和熊猫主题。

这是我的代码现在的样子:

 {assign var=myURI value=$smarty.server.REQUEST_URI}
<span class="price_ht" {if $sttheme.google_rich_snippets} itemprop="price" content="{$product.price_amount}" {/if}>{$product.price_tax_exc|string_format:"%.2f"} {$currency.sign} {if $myURI|strstr:"/fr/"} HT {elseif $myURI|strstr:"/gb/"} "(VAT exc)" {/if}</span>
 <span class="price" {if $sttheme.google_rich_snippets} itemprop="price" content="{$product.price_amount}" {/if}>{$product.price}{if $myURI|strstr:"/fr/"} TTC {elseif $myURI|strstr:"/gb/"} "(VAT inc)"{/if} </span>

但是我的两个价格都显示了不包括增值税的价格,因为变量$ product.price根据客户组设置显示了价格。

这是我要执行的操作的一个示例: https://www.stockresto.com/fr/trancheuse/755-trancheuse-o-195-mm-professionnelle-3611630006279.html

两个价格都显示在产品页面上,并且此网站上的客户组设置与我的相同。

有人知道我如何显示含增值税的价格吗?

1 个答案:

答案 0 :(得分:0)

在后台检查您的编辑产品,您会发现含增值税和不含增值税的特定价格。模板中的变量设置正确