Skip to content

Commit c07b97b

Browse files
committed
magento-engcom/import-export-improvements#43: fix app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php
- make sure that the data format used when importing data matches the expected format
1 parent e653591 commit c07b97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ public function validateRow(array $rowData, $rowNumber)
310310
if (!$this->_addressEntity->getCustomerStorage()->getCustomerId($this->_currentEmail, $websiteId)) {
311311
$this->_addressEntity->getCustomerStorage()->addCustomerByArray(
312312
[
313-
'id' => $this->_nextCustomerId,
313+
'entity_id' => $this->_nextCustomerId,
314314
'email' => $this->_currentEmail,
315315
'website_id' => $websiteId,
316316
]

0 commit comments

Comments
 (0)