Skip to content

Commit c32f20f

Browse files
committed
ACP2E-3735: Incorrect filtered Data in Product Export for Multi-Store Setup
- fixed issue when the product in custom store excluded from export
1 parent b3eb014 commit c32f20f

File tree

1 file changed

+1
-3
lines changed
  • app/code/Magento/CatalogImportExport/Model/Export

1 file changed

+1
-3
lines changed

app/code/Magento/CatalogImportExport/Model/Export/Product.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,9 +1006,7 @@ public function export()
10061006
$entityCollection->setOrder('entity_id', 'asc');
10071007
$this->_prepareEntityCollection($entityCollection);
10081008
$this->paginateCollection($page, $this->getItemsPerPage());
1009-
if ($entityCollection->count() == 0) {
1010-
break;
1011-
}
1009+
10121010
$exportData = $this->getExportData();
10131011
if ($page == 1) {
10141012
$writer->setHeaderCols($this->_getHeaderColumns());

0 commit comments

Comments
 (0)