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)
13151315 }
13161316 $ options = $ this ->_optionColFactory ->create ();
13171317 /* @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 );
13271324
13281325 foreach ($ options as $ option ) {
13291326 $ row = [];
You can’t perform that action at this time.
0 commit comments