Prestashop 1.6:在order-detail.tpl中显示一行TotalProductsTaxes

时间:2015-06-05 09:32:45

标签: prestashop prestashop-1.6

我想在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>

1 个答案:

答案 0 :(得分:2)

如果你有税的价格和没有税的价格,你可以计算税额并将价值存储在变量中:

extra=0