Jump to content
  • 0

wyświetlanie cen w prestashop


frangi

Question

Witam, czy istnieje jakiś darmowy (lub płatny) moduł do cen, który wyświetla przy produkcie cenę netto, brutto i procent obniżki

 

Edit:

Znalazłem temat dotyczący zmiany wyświetlania cen na netto+brutto, lecz u mnie ten sposób nie działa na prestashop 1.6.1.5. Czy mógłby ktoś pomóc?

https://www.prestashop.com/forums/topic/482132-ceny-nettobrutto/

Edited by frangi (see edit history)
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

problem został przeze mnie rozwiązany, wyświetla się cena netto i brutto, która reaguje na zmiany atrybutów i rabaty, trzeba wprowadzić zmiany w plikach product.tpl, product.js oraz product-list.tpl:

 

w pliku product.tpl trzeba zmienić całą instrukcję warunkową na:

 
{if $priceDisplay >= 0 && $priceDisplay <= 2}
<span id="pretaxe_price_display" content="{$productPrice}">{convertPrice price=$productPrice|floatval*0.77}</span><span> netto</span></br>
<span id="our_price_display" class="price" itemprop="price" content="{$productPrice}">{convertPrice price=$productPrice|floatval}</span><span> brutto</span>
{if $tax_enabled  && ((isset($display_tax_label) && $display_tax_label == 1) || !isset($display_tax_label))}
{if $priceDisplay == 1} {l s='tax excl.'}{else} {l s='tax incl.'}{/if}
{/if}
 
w pliku product.js w linii 765 wprowadzić następującą linię:
$('#pretaxe_price_display').text(formatCurrency(priceWithDiscountsDisplay*0.77, currencyFormat, currencySign, currencyBlank));
 
oraz w pliku product-list.tpl:
 
między linią
{if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}
 
a linią
<meta itemprop="priceCurrency" content="{$currency->iso_code}" />
 
trzeba zaimplementować to:
<span id="pretaxe_price_display" class="price product-price">{convertPrice price=$product.price*0.77} netto</span>
<span itemprop="price" class="price product-price">
{hook h="displayProductPriceBlock" product=$product type="before_price"}
{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}
brutto &nbsp</span>
 
a także między linią 
{hook h="displayProductPriceBlock" product=$product type='before_price'}
 
 
a linią
{if $product.price_without_reduction > 0 && isset($product.specific_prices) && $product.specific_prices && isset($product.specific_prices.reduction) && $product.specific_prices.reduction > 0}
 
wkleić to:
<span id="pretaxe_price_display" class="price product-price">{convertPrice price=$product.price*0.77} netto</span>
<span class="price product-price">
{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}
brutto &nbsp</span></br>
 
wszystko działa bez zarzutu, Pozdrawiam
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...