Magento – Magento change Ship order status

magento-1.9order-statussales-order

In Magento order status ship button while clicking it automatically change complete. So i want to change some custom order status like shipment

How to change it?

Best Answer

Open file app/code/core/Mage/Sales/etc/config.xml and find node. Inside this node, add following.

<mystate translate="label">
    <label>My State</label>
    <statuses>
       <mystatus default="1"/>
    </statuses>
    <visible_on_front>1</visible_on_front>
</mystate>
Note : I don't recommend to edit core files. But what you can do is, set this in your own module which is depends on Mage_Sales module.

also check bellow links.

https://stackoverflow.com/questions/8141140/magento-can-an-order-be-set-to-the-processing-state-without-creating-an-invoice

http://www.hostknox.com/tutorials/magento/order-statuses

http://www.dckap.com/blog/magento-order-state/

I hope this will help you.

Related Topic