如何限制其他运输方式 - Magento

时间:2013-12-18 16:58:55

标签: magento shipping restriction

通过 $result = Mage::getModel('shipping/rate_result');方法我可以创建新的运费。但我如何限制此操作中的其他运输方式?

1 个答案:

答案 0 :(得分:0)

抓住所有有效的送货方式,循环浏览每一种方法,看看它是否与您想要的方法匹配

$activeCarriers = Mage::getModel('shipping/config')->getActiveCarriers();
foreach($activeCarriers as $code => $method) {
    if($code == 'yourcode') {
         $result = Mage::getModel('shipping/rate_result');
    }

}