-1
我需要幫助,我有一個模塊prestashop,爲產品。 現在它顯示了單位的價格和所選數量的總和。增值稅模塊prestashop
我還需要顯示包含增值稅的總價。我做不到。
我添加代碼.tpl
(總)
<div class="preu_total_IVA"> <span class="text_preu_IVA">IVA incluido:</span> <span id="mp_total_price_IVA"></span> <span style="font-weight:normal;">€</span></div>
我添加代碼.tpl
{
var price = jsonData['price'];
var unitprice = jsonData['unitprice'];
var preutotaliva = jsonData['preutotaliva'];
//var stringtotal = unitprice + '<br/><span class="mp_our_price">(Total '+price+')</span>';
var stringtotal = price;
$('#our_price_display').html(stringtotal);
if($('.mp_total_price').length)
$('.mp_total_price').html(price);
if($('.mp_unit_price').length){
$('.mp_unit_price').html(unitprice);
if($('.mp_total_price_IVA').length)
$('.mp_total_price_IVA').html(preutotaliva);
}
我有點糊塗(失蹤的方式後,「無功stringtotal =價格」關閉標籤...)但是...你能爲我提供一個鏈接?如果你想在包含增值稅的頁面中顯示價格,我認爲你應該改變模塊tpl文件而不是.js。 – Aurora