cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 1.9 incorrect tax inclusive price?

Magento 1.9 incorrect tax inclusive price?

Hello

 

$_tierPrices = $this->getTierPrices($_product);

foreach ($_tierPrices as $_price):

var_dump($_price);

 

result is below , prices are entered exclusive of Tax - and set to display excluding tax - and ALL values appear to be tax exclusive however I want to display the Tax inclusive value in certain scenarios. This code used to work in 1.3 - but doesn't in 1.9..? 

 

array(13) { ["price_id"]=> string(6) "100622" ["website_id"]=> string(1) "1" ["all_groups"]=> string(1) "0" ["cust_group"]=> string(1) "0" ["price"]=> float(80.61) ["price_qty"]=> float(3) ["website_price"]=> float(80.61) ["formated_price"]=> string(33) "$80.61" ["savePercent"]=> float(2) ["formated_price_incl_tax"]=> string(33) "$80.61" ["formated_price_incl_weee"]=> string(49) "$80.61" ["formated_price_incl_weee_only"]=> string(40) "$80.61" ["formated_weee"]=> string(32) "$0.00" }