I'm trying to mark a "Processing" order as Complete when I get a certain response back from a third party service. I've got everything set up for this, but the only problem is that orders are staying in the Processing state.

I'm generating an invoice (I don't think I need this though, as each item is marked as "invoiced" in the Magento backend) and a shipment like so:

$order = Mage::getModel('sales/order')... (etc)
$shipment = $order->prepareShipment($quantities);
$shipment->register();
$shipment->setOrder($order);
$shipment->save();

$invoice = $order->prepareInvoice($quantities);
$invoice->register();
$invoice->setOrder($order);
$invoice->save();

This doesn't seem to be doing it though - I get no errors back from this code, but the order remains as processing. In the backend I can still see the "Ship" button at the top of the order, and each item is in the "invoiced" state.

Any tips would be greatly appreciated.

link|improve this question

80% accept rate
feedback

3 Answers

up vote 3 down vote accepted

You can take a look at this article (in Russian).

link|improve this answer
Thanks, the code in the article did the trick after I changed to to a shipment rather than an invoice. – greg27 Jan 18 at 22:36
Unfortunately, the link is now broken. – Mike May 9 at 19:40
Would be really nice to have an updated link. archive.org still has a version of the link in case anyone is interested. web.archive.org/web/20110414102634/http://snowcore.net/…. Use google chrome to get a translation. – shaune May 11 at 20:06
@Mike domain will be available in few days, so you can check later – WebFlakeStudio May 12 at 12:39
feedback

Try

$order->setStateUnprotected('complete',
    'complete',
    'Order marked as complete automatically',
    false);

This method is in app/code/local/Mage/Sales/Model/Order.php (in v1.6.1)

938:    public function setStateUnprotected($state, $status = false, $comment = '', $isCustomerNotified = null)
link|improve this answer
Thanks for the response. This didn't seem to have any effect in Magento 1.4 – greg27 Jan 18 at 22:56
feedback

I'm doing this that way:

$order->setState('complete', true, $this->__('Your Order History Message Here.'))
      ->save();
link|improve this answer
1  
Thanks for the response. This brought up the error "The Order State "complete" must not be set manually." – greg27 Jan 18 at 22:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.