Skip to content

Commit 9bdb3f8

Browse files
committed
ACP2E-294: Category Ids Not Available in scheduled Export Filters
1 parent 926b334 commit 9bdb3f8

File tree

2 files changed

+2
-3
lines changed
  • app/code/Magento
    • AdvancedPricingImportExport/Controller/Adminhtml/Export
    • CatalogImportExport/Model/Export/Product/Type

2 files changed

+2
-3
lines changed

app/code/Magento/AdvancedPricingImportExport/Controller/Adminhtml/Export/GetFilter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public function execute()
3434
/** @var $export \Magento\ImportExport\Model\Export */
3535
$export = $this->_objectManager->create(\Magento\ImportExport\Model\Export::class);
3636
$export->setData($data);
37-
$export->filterAttributeCollection(
38-
$attrFilterBlock->prepareCollection($export->getEntityAttributeCollection())
37+
$attrFilterBlock->prepareCollection(
38+
$export->filterAttributeCollection($export->getEntityAttributeCollection())
3939
);
4040
return $resultLayout;
4141
} catch (\Exception $e) {

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ class Simple extends \Magento\CatalogImportExport\Model\Export\Product\Type\Abst
3333
protected $_disabledAttrs = [
3434
'old_id',
3535
'tier_price',
36-
'category_ids',
3736
'has_options',
3837
'is_returnable',
3938
'required_options',

0 commit comments

Comments
 (0)