Skip to content

Commit 6dd9f6e

Browse files
committed
[Fix] forgot to add lowercase conversion on grouped product assignation after changes done in MAGETWO-67240
- See changes done for MAGETWO-67240 here 02596b7#diff-b876c962d83b3bee42acba83af842309
1 parent 48d9e3f commit 6dd9f6e

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/GroupedImportExport/Model/Import/Product/Type

1 file changed

+1
-1
lines changed

app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function saveData()
9999
}
100100
$scope = $this->_entityModel->getRowScope($rowData);
101101
if (Product::SCOPE_DEFAULT == $scope) {
102-
$productData = $newSku[$rowData[Product::COL_SKU]];
102+
$productData = $newSku[strtolower($rowData[Product::COL_SKU])];
103103
} else {
104104
$colAttrSet = Product::COL_ATTR_SET;
105105
$rowData[$colAttrSet] = $productData['attr_set_code'];

0 commit comments

Comments
 (0)