2017-09-27 182 views
-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); 

      } 

回答

0

對不起,也許我不解釋自己很好,我需要的是根據產品的價格計算增值稅。

這是由prestashop帶來的,但我不使用prestashop產品頁面。 我使用一個模塊計算價格x單位和總價格不含增值稅,我需要的是我用增值稅計算。

這是我在javascript中的模塊。

var price = jsonData['price']; 
 
\t \t \t \t var unitprice = jsonData['unitprice']; 
 
\t \t \t \t //var stringtotal = unitprice + '<br/><span class="mp_our_price">(Total '+price+')</span>'; 
 
\t \t \t \t var stringtotal = price 
 
\t \t \t \t $('#our_price_display').html(stringtotal); 
 
\t \t \t \t if($('.mp_total_price').length) 
 
\t \t \t \t \t $('.mp_total_price').html(price); 
 
\t \t \t \t if($('.mp_unit_price').length){ \t 
 
\t \t \t \t \t $('.mp_unit_price').html(unitprice); 
 
\t \t \t \t }

+0

我有點糊塗(失蹤的方式後,「無功stringtotal =價格」關閉標籤...)但是...你能爲我提供一個鏈接?如果你想在包含增值稅的頁面中顯示價格,我認爲你應該改變模塊tpl文件而不是.js。 – Aurora