mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-05 14:23:37 +03:00
Fix customer create externalId (#251)
This commit is contained in:
parent
b22941cc3e
commit
feaeca458f
3 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
|||
## v4.1.8
|
||||
* Fixed customer externalId when creating a customer and sending it to RetailCRM
|
||||
|
||||
## v4.1.7
|
||||
* Fixed notices in ICML generation and while setting delivery type
|
||||
* Fixed incorrect data check before setting payment data
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.1.7
|
||||
4.1.8
|
||||
|
|
|
@ -420,6 +420,7 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||
'lastName' => $data['lastname'],
|
||||
'email' => $data['email'],
|
||||
'createdAt' => $data['date_added'],
|
||||
'externalId' => $data['customer_id'],
|
||||
'address' => array(
|
||||
'countryIso' => $data['payment_iso_code_2'],
|
||||
'index' => $data['payment_postcode'],
|
||||
|
|
Loading…
Add table
Reference in a new issue