From 054d3bbf992306f7a2766cc67f1cde3a63563096 Mon Sep 17 00:00:00 2001 From: Leonid Poluyanov <lpoluyanov@magento.com> Date: Tue, 19 Dec 2017 16:31:07 +0200 Subject: [PATCH] MAGETWO-84448: Product Import does not allow store-specific Custom Option labels --- .../Magento/BundleImportExport/Model/Export/RowCustomizer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php b/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php index 840accf098c..fe96f31f303 100644 --- a/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php +++ b/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php @@ -472,7 +472,7 @@ class RowCustomizer implements RowCustomizerInterface $product->unsetData($this->optionCollectionCacheKey); $product->setStoreId($storeId); $this->optionCollections[$productSku][$storeId] = $product->getTypeInstance() - ->getOptionCollections($product) + ->getOptionsCollection($product) ->setOrder('position', Collection::SORT_ORDER_ASC); } return $this->optionCollections[$productSku][$storeId]; -- GitLab