File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
app/code/Magento/CatalogImportExport/Model/Export Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -1315,15 +1315,12 @@ protected function getCustomOptionsData($productIds)
1315
1315
}
1316
1316
$ options = $ this ->_optionColFactory ->create ();
1317
1317
/* @var \Magento\Catalog\Model\ResourceModel\Product\Option\Collection $options*/
1318
- $ options ->reset ()->addOrder ('sort_order ' , 'ASC ' )->addTitleToResult (
1319
- $ storeId
1320
- )->addPriceToResult (
1321
- $ storeId
1322
- )->addProductToFilter (
1323
- $ productIds
1324
- )->addValuesToResult (
1325
- $ storeId
1326
- );
1318
+ $ options ->reset ();
1319
+ $ options ->addOrder ('sort_order ' , 'ASC ' );
1320
+ $ options ->addTitleToResult ($ storeId );
1321
+ $ options ->addPriceToResult ($ storeId );
1322
+ $ options ->addProductToFilter ($ productIds );
1323
+ $ options ->addValuesToResult ($ storeId );
1327
1324
1328
1325
foreach ($ options as $ option ) {
1329
1326
$ row = [];
You can’t perform that action at this time.
0 commit comments