我需要在Magento提交订单(从结帐/一页重定向之前)后获取订单ID。我的模型方法工作正常,没有错误。
我已添加:
$Order_Id = Mage::getSingleton('checkout/session')->getLastRealOrderId();
在重定向声明之前:
$this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
但$Order_id
的值为NULL
。如何检索新的订单ID?