Skip to content

Commit ff74f26

Browse files
author
nsyvokonenko
committed
MAGETWO-38138: Stabilize story
- fix for import/export
1 parent cebb41b commit ff74f26

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/CustomerImportExport/Model/Import

1 file changed

+2
-2
lines changed

app/code/Magento/CustomerImportExport/Model/Import/Address.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,8 +522,8 @@ protected function _prepareDataForUpdate(array $rowData)
522522

523523
if (isset($this->_countryRegions[$countryNormalized][$regionNormalized])) {
524524
$regionId = $this->_countryRegions[$countryNormalized][$regionNormalized];
525-
$entityRow[self::COLUMN_REGION] = $regionId;
526-
$entityRow[self::COLUMN_COUNTRY_ID] = $this->_regions[$regionId];
525+
$entityRow[self::COLUMN_REGION] = $this->_regions[$regionId];
526+
$entityRow['region_id'] = $regionId;
527527
}
528528
}
529529

0 commit comments

Comments
 (0)