大家好我需要显示不带小数的统一费率运费怎么办请咨询。
答案 0 :(得分:0)
在Mage_Shipping_Model_Carrier_Flatrate类的公共函数collectRates中 在此之前:
$method->setPrice($shippingPrice);
$method->setCost($shippingPrice);
放置这两行
$value= explode(',', '$shippingPrice');
$shippingPrice=$value[0];
所以修改后的代码将是
$value= explode(',', '$shippingPrice');
$shippingPrice=$value[0];
$method->setPrice($shippingPrice);
$method->setCost($shippingPrice);