添加VAT模块prestashop

时间:2017-09-27 21:08:52

标签: javascript 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);

            }

1 个答案:

答案 0 :(得分:0)

对不起,也许我不解释自己,我需要的是根据产品的价格,我计算增值税。

这是由prestashop带来的,但我不使用prestashop作为产品页面。 我使用的模块计算价格x单位和不含增值税的总价格,我需要的是我用增值税计算。

这就是我在javascript中使用的模块。

&#13;
&#13;
var price = jsonData['price'];
				var unitprice = jsonData['unitprice'];
				//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);
				}
&#13;
&#13;
&#13;