【发布时间】:2011-06-04 16:13:13
【问题描述】:
有没有办法在 Magento 的管理员中为 Google Checkout 更改默认的新订单状态。
在下拉框中只有选择待处理的选项。理想情况下,我希望能够将其设置为处理。
如何向该下拉框添加更多选项?
【问题讨论】:
标签: magento
有没有办法在 Magento 的管理员中为 Google Checkout 更改默认的新订单状态。
在下拉框中只有选择待处理的选项。理想情况下,我希望能够将其设置为处理。
如何向该下拉框添加更多选项?
【问题讨论】:
标签: magento
最快的方法是使用以下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>
这只会使所有状态都可用。
【讨论】:
【讨论】: