Formation Prestashop intégrateur: La gestion des devises / Afficher une devise avec Smarty.

Vous êtes ici : Accueil / Prestashop intégrateur / La gestion des devises / Afficher une devise avec Smarty.


Afficher une devise avec Smarty.

Sur PrestaShop 1.6 et sur PrestaShop 1.7 back-office Legacy, la mise en forme des informations est réalisée dans Smarty.

displayPrice affiche un prix dans la devise courante.

{if $order->getTaxCalculationMethod() == $smarty.const.PS_TAX_INC}
  {displayPrice
    price=$line.shipping_cost_tax_incl
    currency=$currency->id
  }
{else}
  {displayPrice
    price=$line.shipping_cost_tax_excl
    currency=$currency->id
  }
{/if}