我想知道是否有人知道我可以将 Magento 的 live ups 运费降低一个因素,比如 50%。我尝试了负面处理,但不幸的是这是不可能的。
谢谢, 索利曼
检查该方法内 Mage_Usa_Model_Shipping_Carrier_Ups 中的 collectRates() 方法,您会发现 $this->_result = $this->_getQuotes();
进一步调试告诉我们 $this->_result 是 Mage::getModel('shipping/rate_result') 类型,它是 Mage::getModel('shipping/rate_result_method') 的容器,您应该在其中使用 setData(' price') 或者 setData('cost');
干杯!