magento-stock-movements icon indicating copy to clipboard operation
magento-stock-movements copied to clipboard

Added possibility to process PayPal Express orders

Open norgeindian opened this issue 5 years ago • 2 comments

This commit adds the possibility to also process PayPal Express orders, as these do not throw the event checkout_submit_all_after.

norgeindian avatar Aug 15 '19 12:08 norgeindian

@norgeindian FYI: There's a bug in the code:

require_once Mage::getModuleDir('controllers', 'Mage_PayPal') . DS . 'ExpressController.php';

Should be:

require_once Mage::getModuleDir('controllers', 'Mage_Paypal') . DS . 'ExpressController.php';

(Mage_Paypal instead of Mage_PayPal)

milansimek avatar Sep 09 '20 11:09 milansimek

@milansimek , thanks for the hint. Changed the pull request accordingly.

norgeindian avatar Sep 09 '20 14:09 norgeindian