【问题标题】:Magento Google Checkout Change New Order StatusMagento Google Checkout 更改新订单状态
【发布时间】:2011-06-04 16:13:13
【问题描述】:

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

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

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

【问题讨论】:

    标签: magento


    【解决方案1】:

    最快的方法是使用以下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>
    

    这只会使所有状态都可用。

    【讨论】:

    • 发条极客真是个好主意。我会那样做的!谢谢!
    【解决方案2】:

    【讨论】:

    • 感谢您的想法。不过对兼容性有点怀疑。