通过
$result = Mage::getModel('shipping/rate_result');
方法我可以创建新的运费。但我如何限制此操作中的其他运输方式?
答案 0 :(得分:0)
抓住所有有效的送货方式,循环浏览每一种方法,看看它是否与您想要的方法匹配
$activeCarriers = Mage::getModel('shipping/config')->getActiveCarriers();
foreach($activeCarriers as $code => $method) {
if($code == 'yourcode') {
$result = Mage::getModel('shipping/rate_result');
}
}