We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebb41b commit ff74f26Copy full SHA for ff74f26
app/code/Magento/CustomerImportExport/Model/Import/Address.php
@@ -522,8 +522,8 @@ protected function _prepareDataForUpdate(array $rowData)
522
523
if (isset($this->_countryRegions[$countryNormalized][$regionNormalized])) {
524
$regionId = $this->_countryRegions[$countryNormalized][$regionNormalized];
525
- $entityRow[self::COLUMN_REGION] = $regionId;
526
- $entityRow[self::COLUMN_COUNTRY_ID] = $this->_regions[$regionId];
+ $entityRow[self::COLUMN_REGION] = $this->_regions[$regionId];
+ $entityRow['region_id'] = $regionId;
527
}
528
529
0 commit comments