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.
2 parents 50a4da0 + f00ce93 commit ef885ceCopy full SHA for ef885ce
app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php
@@ -89,7 +89,7 @@ public function saveData()
89
foreach ($associatedSkusAndQtyPairs as $associatedSkuAndQty) {
90
++$position;
91
$associatedSkuAndQty = explode(self::SKU_QTY_DELIMITER, $associatedSkuAndQty);
92
- $associatedSku = isset($associatedSkuAndQty[0]) ? trim($associatedSkuAndQty[0]) : null;
+ $associatedSku = isset($associatedSkuAndQty[0]) ? strtolower(trim($associatedSkuAndQty[0])) : null;
93
if (isset($newSku[$associatedSku])) {
94
$linkedProductId = $newSku[$associatedSku][$this->getProductEntityIdentifierField()];
95
} elseif (isset($oldSku[$associatedSku])) {
0 commit comments