2013-03-11 82 views
0

你好,我需要顯示統一費率航運沒有小數如何做,請諮詢。Magento平價運費價格不含小數點

+0

使用PHP爆炸例如:$ foo = explode(',','100,99'); echo $ foo [0];或Mage/Core/Model/Store - > roundPrice方法。 – 2013-03-11 14:15:53

回答

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); 
+0

謝謝你的幫助satish – rishu 2013-03-14 06:26:57

+0

很高興知道它幫助你 – oscprofessionals 2013-03-14 19:44:50