We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50a4da0 commit f00ce93Copy full SHA for f00ce93
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