Jump to content
  • 0

Cena netto + Vat


Jerzy1410

Question

10 answers to this question

Recommended Posts

  • 0

Dzięki wielkie. Udało się zrobić ten format ceny w towarach wyświetlających się na głównej stronie. Niestety po wejsciu do produktu dalej jest tylko " x" zł albo "x"  zł netto.

Próbowałem kilku zmian w sekcji tłumaczeń ale bez rezultatu...

Link to comment
Share on other sites

  • 0

W product.tpl odszukaj warunek:

{if $priceDisplay == 1} {l s='tax excl.'}{else} {l s='tax incl.'}{/if}

i zamień na:

{if $priceDisplay == 1} {l s='tax excl.'} {l s='+ VAT'} {$product->tax_rate}%{else} {l s='tax incl.'}{/if}

Będziesz miał wyświetloną jeszcze stawkę vatu.

Link to comment
Share on other sites

  • 0

To jest cały warunek wyświetlający cenę w 1.6.0.9 (plik product.tpl z oryginalnej instalki)

{if $priceDisplay >= 0 && $priceDisplay <= 2}
  <span id="our_price_display" itemprop="price">{convertPrice price=$productPrice}</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}-->
    <meta itemprop="priceCurrency" content="{$currency->iso_code}" />
    {hook h="displayProductPriceBlock" product=$product type="price"}
{/if}

Jak widać etykietki netto/brutto są zakomentowane.

Nie wiem jaki był cel wyłączenia tego, może nie działało poprawnie w 1.6.0.9.

Od wersji 1.6.0.9 do obecnej 1.6.1.13 wydano setki/tysiące poprawek, także może coś było nie tak w tamtej wersji.

Masz starą bubel wersję to po prostu musisz eksperymentować, co będzie działać, a co nie.

Najpierw to odkomentuj te etykietki.

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

  • 0

dziękuję za informację, nie mieliśmy zakomentowanych linii - nie ma zmian

{if $priceDisplay >= 0 && $priceDisplay <= 2}
<span id="our_price_display" itemprop="price">{convertPrice price=$productPrice}</span>
{if $tax_enabled  && ((isset($display_tax_label) && $display_tax_label == 1) || !isset($display_tax_label))}
{if $priceDisplay == 1}<br /><span style="font-size:16px; color:#6f6f6f;">{l s='tax excl.'}</span>{else}<br />{l s='tax incl.'}{/if}
{/if}
<meta itemprop="priceCurrency" content="{$currency->iso_code}" />
{hook h="displayProductPriceBlock" product=$product type="price"}
{/if}
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...