Created
January 21, 2015 18:55
-
-
Save willboudle/16f0e84d6f877f5b107b to your computer and use it in GitHub Desktop.
Get Amazon Order Id from M2E Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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