Récupérer le prix d’un produit TTC sous magento

Bonjour,

Voici un tout petit bout de code qui permet de récupérer le prix TTC d’un produit sous magento :

$_taxHelper  = $this->helper('tax');
$_price = $_taxHelper->getPrice($_product, $_product->getPrice()) ;
//Pour obtenir un prix bien formaté avec le symbole euro :
$magento_style_price = Mage::helper('core')->currency($_price);

En espérant que ça en aidera certains !