我正在使用 magento 1.4.1.1 并尝试使用朋友(Daniel Sloof)的线索 [http://stackoverflow.com/questions/9411971/round-special-price-only-in-magento] 没有工作。在恢复 bkp 之前。
我正在使用组合产品,需要为所有组客户申请四舍五入的折扣价,批发:30%,批发:40%,批发:50%
我尝试使用:app/code/core/Mage/Core/Model/Store.php
public function roundPrice($price)
{
return round((ceil($price*10)/10), 2);
}
问题出在购物车中,这个四舍五入小计,它不能。或者更简单的方法(正确)来做到这一点?