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 b8892f0 commit 6b9aa47Copy full SHA for 6b9aa47
app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php
@@ -408,7 +408,9 @@ protected function _saveValidatedBunches()
408
if ($source->valid()) {
409
try {
410
$rowData = $source->current();
411
- $skuSet[$rowData['sku']] = true;
+ if (array_key_exists('sku', $rowData)) {
412
+ $skuSet[$rowData['sku']] = true;
413
+ }
414
} catch (\InvalidArgumentException $e) {
415
$this->addRowError($e->getMessage(), $this->_processedRowsCount);
416
$this->_processedRowsCount++;
0 commit comments