When I look at the event checkout_onepage_controller_success_action and works, but I can not get the Id of the newly created order.
checkout_onepage_controller_success_action
Anyone have any idea
This is an answer provided by Branko Ajzele and I've just successfully tested:
$order = new Mage_Sales_Model_Order(); $incrementId = Mage::getSingleton('checkout/session')->getLastRealOrderId(); $order->loadByIncrementId($incrementId);
Thanks to him and hope it'll work.