mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-03 21:33:38 +03:00
uniqid для внешнего ID платежа
This commit is contained in:
parent
93ccd80874
commit
d2cf2811f7
1 changed files with 2 additions and 2 deletions
|
@ -289,7 +289,7 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||
}
|
||||
|
||||
$payment = array(
|
||||
'externalId' => $order_id,
|
||||
'externalId' => uniqid($order_id . "-"),
|
||||
'type' => $payment_code,
|
||||
'amount' => $totals['total']
|
||||
);
|
||||
|
@ -302,7 +302,7 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||
|
||||
if (!$create) {
|
||||
$payment['order'] = array(
|
||||
'externalId' => $order_id
|
||||
'externalId' => uniqid($order_id . "-"),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue