我想在Order-Detail.tpl
中显示Total Taxes行我添加了这行代码,但我不知道写什么来获取TotalProductsTaxes
而不是TotalProductsWithoutTaxes
。
我尝试了几件事,但他们都打破了页面。
<tr class="item">
<td colspan="{if $return_allowed}2{else}1{/if}">
<strong>{l s='TVA :'}</strong>
</td>
<td colspan="{if $order->hasProductReturned()}5{else}4{/if}">
<span class="price">{displayWtPriceWithCurrency price=$order->getTotalProductsWithoutTaxes() currency=$currency}</span>
</td>
</tr>
答案 0 :(得分:2)
如果你有税的价格和没有税的价格,你可以计算税额并将价值存储在变量中:
extra=0