有没有办法在Magento的Google Checkout管理员中更改默认的新订单状态。
在下拉框中,只有选择待定的选项。理想情况下,我希望能够将其设置为Processing。
如何在该下拉框中添加更多选项?
答案 0 :(得分:3)
最快捷的方法是使用以下system.xml
文件创建模块:
<config>
<sections>
<google>
<groups>
<checkout>
<fields>
<order_status>
<source_model>adminhtml/system_config_source_order_status</source_model>
</order_status>
<fields>
<checkout>
</groups>
</google>
</sections>
</config>
这将使所有状态都可用。
答案 1 :(得分:0)