sulman
sulman

Reputation: 2461

Magento Google Checkout Change New Order Status

Is there a way to change the default New Order Status in Magento's admin for Google Checkout.

In the dropdown box there is only the option to select Pending. Ideally I want to be able to set that to Processing instead.

How do I add more options to that drop down box?

Upvotes: 1

Views: 1038

Answers (2)

clockworkgeek
clockworkgeek

Reputation: 37700

The quickest way is to create a module with the following system.xml file:

<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>

This will simply make all statuses available.

Upvotes: 3

Related Questions