Jump to content

Zobrazení ceny s DPH i bez DPH, pokud má zboží nadefinované atributy


karelzemek

Recommended Posts

Ahoj,
řeším jak zobrazit dvojí ceny (s dph a bez dph) v detailu produktu, když má produkt definované atributy a každý z nich má jinou cenu

pátral jsem zde na fóru a našel radu - v product.tpl jsem přepsal toto:

               {if !$priceDisplay || $priceDisplay == 2}
{convertPrice price=$product->getPrice(true, $smarty.const.NULL)}
                       {if $tax_enabled}{l s='tax incl.'}{/if}
               {/if}
               {if $priceDisplay == 1}
{convertPrice price=$product->getPrice(false, $smarty.const.NULL)}
                       {if $tax_enabled}{l s='tax excl.'}{/if}



na toto:

               {if !$priceDisplay || $priceDisplay == 2}
{convertPrice price=$product->getPrice(true, $smarty.const.NULL)}
                       {if $tax_enabled}{l s='tax incl.'}{/if}
               {/if}

               {if !$priceDisplay || $priceDisplay == 2}
{convertPrice price=$product->getPrice(false, $smarty.const.NULL)}
                       {if $tax_enabled}{l s='tax excl.'}{/if}
               {/if}




Zobrazí se obě ceny, jenže při navolení nějakého z atributů se změní jen cena s DPH, cena bez DPH se nezmění (zůstane na hodnotě defaultního atributu).


Obě ceny chci zobrazit jen v detailu produktu, proto jsem měnil jen product.tpl



Nevíte někdo jak problém vyřešit? DÍKY!

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...