Magento Google Checkout更改新订单状态

时间:2011-01-06 13:53:57

标签: magento

有没有办法在Magento的Google Checkout管理员中更改默认的新订单状态。

在下拉框中,只有选择待定的选项。理想情况下,我希望能够将其设置为Processing。

如何在该下拉框中添加更多选项?

2 个答案:

答案 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)