mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-04 05:43:37 +03:00
fix country and region in delivery address on update order
This commit is contained in:
parent
b1f0835b9c
commit
dca2b67a5b
1 changed files with 2 additions and 2 deletions
|
@ -227,8 +227,8 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||
'address' => array(
|
||||
'index' => $order_data['shipping_postcode'],
|
||||
'city' => $order_data['shipping_city'],
|
||||
'country' => $order_data['shipping_country_id'],
|
||||
'region' => $order_data['shipping_zone_id'],
|
||||
'countryIso' => $order_data['shipping_iso_code_2'],
|
||||
'region' => $order_data['shipping_zone'],
|
||||
'text' => implode(', ', array(
|
||||
$order_data['shipping_postcode'],
|
||||
$country,
|
||||
|
|
Loading…
Add table
Reference in a new issue