OrderId が myparcel サイトに送信される MyParcel のモジュールを使用しています。問題は、これが magento からの内部注文 ID であり、販売注文番号ではないことです。
代わりに販売注文番号を取得する方法を知っている人はいますか?
private function _getOrder()
{
if (!$orderId = (int) $this->getRequest()->getParam('order_id')) { throw new Exception("'order_id' not set"); }
if (!$ret = Mage::getModel('sales/order')->load($orderId)) { throw new Exception("Order '$orderId' not found"); }
return $ret;
}