From 61ecbb4bbcee8dea7b66529237ec44dc888dbefe Mon Sep 17 00:00:00 2001 From: Michele Fantetti Date: Fri, 2 Feb 2018 20:30:16 +0100 Subject: [PATCH] To install all 'CatalogSampleData' data The call to other csv files (related/upsell/crossell) is missing. --- app/code/Magento/CatalogSampleData/Setup/Installer.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/code/Magento/CatalogSampleData/Setup/Installer.php b/app/code/Magento/CatalogSampleData/Setup/Installer.php index cefcc1cc9a..4f62c36f27 100644 --- a/app/code/Magento/CatalogSampleData/Setup/Installer.php +++ b/app/code/Magento/CatalogSampleData/Setup/Installer.php @@ -64,6 +64,11 @@ public function install() 'Magento_CatalogSampleData::fixtures/SimpleProduct/images_gear_bags.csv', 'Magento_CatalogSampleData::fixtures/SimpleProduct/images_gear_fitness_equipment.csv', 'Magento_CatalogSampleData::fixtures/SimpleProduct/images_gear_watches.csv', + ], + [ + 'Magento_CatalogSampleData::fixtures/Links/crosssell.csv', + 'Magento_CatalogSampleData::fixtures/Links/related.csv', + 'Magento_CatalogSampleData::fixtures/Links/upsell.csv', ] ); }