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

mbjcgjjk  于 2023-01-17  发布在  其他
关注(0)|答案(1)|浏览(155)

通过$result = Mage::getModel('shipping/rate_result');方法,我可以创建一个新的运费。但我如何限制其他航运方式在这个行动?

bxjv4tth

bxjv4tth1#

获取所有活动的运输方法,循环每个方法,看看它是否与您想要的匹配

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

}

相关问题