mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-03 13:23:38 +03:00
Add prefix to externalId payment (#217)
This commit is contained in:
parent
4359f084bd
commit
7cdab05aa2
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class RetailcrmOrderConverter {
|
|||
}
|
||||
|
||||
$payment = array(
|
||||
'externalId' => sprintf("opencart_%d", $this->order_data['order_id']),
|
||||
'externalId' => uniqid($this->order_data['order_id'] . "-"),
|
||||
'amount' => $this->getTotal('total')
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue