[+] CORE : added transaction_id in PaymentModule::validateOrder() in $extra_vars['transaction_id']

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17827 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vAugagneur
2012-10-10 15:20:34 +00:00
parent 965f34494e
commit dbcffd2a3f

View File

@@ -304,7 +304,12 @@ abstract class PaymentModuleCore extends Module
// $order is the last order loop in the foreach
// The method addOrderPayment of the class Order make a create a paymentOrder
// linked to the order reference and not to the order id
if (!$order->addOrderPayment($amount_paid))
if (isset($extra_vars['transaction_id']))
$transaction_id = $extra_vars['transaction_id'];
else
$transaction_id = null;
if (!$order->addOrderPayment($amount_paid, null, $transaction_id))
throw new PrestaShopException('Can\'t save Order Payment');
}