简体   繁体   中英

Magento manually change order status to 'complete'

I am trying to manually change order status to complete at a certain point in my code. This is what I have so far:

$order = Mage::getModel('sales/order')->load($_GET['orderid']);
$order->setState(Mage_Sales_Model_Order::STATE_COMPLETE, true, 'Pedido completado exitosamente.', true, false)->save();

When I do that I get the error:

The Order state 'complete' must not be set manually.

Ok so I tried this:

$order = Mage::getModel('sales/order')->load($_GET['orderid']);
$order->setStatus("complete");
$order->save();

When I do that I get the error:

Call to a member function getMethodInstance() on a non-object

So how can I manually set the order status to complete.

I tried with the first one commenting out the following lines in Sales/Order.php :

if ($shouldProtectState) {
            if ($this->isStateProtected($state)) {
                Mage::throwException(
                    Mage::helper('sales')->__('The Order State "%s" must not be set manually.', $state)
                );
            }
        }

But no go, I still get the not setting to complete error above.

I am using Magento 1.7.0.2.

First get the order ID like you already did:

$order = Mage::getModel('sales/order')->load($_GET['orderid']);

and then,

Try

$order->addStatusToHistory(Mage_Sales_Model_Order::STATE_COMPLETE);

OR

$order->setData('state', Mage_Sales_Model_Order::STATE_COMPLETE);
$order->save();

You can't set Order state to COMPLETE or CLOSED manually with setState() method AFAIK.

I use

$order->addStatusHistoryComment("My comment why the status was changed", 
Mage_Sales_Model_Order::STATE_COMPLETE);

The method addStatusToHistory is deprecated according to the Mage_Sales_Model_Order code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM