Magento multithreading payment module

How can I enable a custom module with redirection to a third-party website after placing an order for several orders?

When I set protected $_canUseForMultishipping = true; , customers are not redirected to pay for the order.

+6
source share
1 answer

Sorry, Magento does not allow forwarding payments for multi-user orders.

The reason is that Magento generates one order for one delivery address, so the client needs to redirect to the payment page for each delivery address. That would be very unpleasant, so Magento denies such payment.

+1
source

Source: https://habr.com/ru/post/955237/


All Articles