Magento – Rounding products prices in magento

pricerounding

I create a new product and type price= $1.2222. But when I click Save and Continue edit the price = $1.22. I don't want to round the price, i want the price=$1.2222. How can I do that? Thank you!

Best Answer

It's because of Mage_Core_Model_Store->roundPrice($price)

/**
 * Round price
 *
 * @param mixed $price
 * @return double
 */
public function roundPrice($price)
{
    return round($price, 2);
}

I've created a module which rewrite core/store and overrides the roundPrice() and has the round($price, 4) inside.

Related Topic