2013-04-22 69 views
2

我創建訂單programmaticaly,並且一切正常。但我需要更改運費價格。我嘗試:Magento創建訂單時更改運費

$shippingAddress->setCollectShippingRates(true)->collectShippingRates() 
->setShippingMethod('flatrate_flatrate') 
->setShippingAmount('200') 
->setBaseShippingAmount('200') 
->setPaymentMethod('checkmo'); 

但在管理它仍然顯示航運&處理InformationFlat利率 - 固定€12,230.00

回答

1

如果您需要更改出貨價格爲所有訂單,最好的方式來做到這一點是更改管理面板上的配置:系統 - >配置 - >運輸方式 - >統一費率,價格字段。

如果這是您需要的不同訂單,最好的方法是創建自定義的送貨方式。你可以看到Magento's guideline to do sothis other article這也很好。