Skip to content

Instantly share code, notes, and snippets.

@willboudle
Created January 21, 2015 18:55
Show Gist options
  • Select an option

  • Save willboudle/16f0e84d6f877f5b107b to your computer and use it in GitHub Desktop.

Select an option

Save willboudle/16f0e84d6f877f5b107b to your computer and use it in GitHub Desktop.
Get Amazon Order Id from M2E Pro
$order = Mage::getModel('sales/order')->load(entity_id);
$paymentInfo = Mage::helper('payment')->getInfoBlock($order->getPayment())
->setIsSecureMode(true);
$channelOrderId = $paymentInfo->getChannelOrderId();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment