We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6844187 commit eb31b1fCopy full SHA for eb31b1f
app/code/Magento/SalesRule/Model/ResourceModel/Rule/Collection.php
@@ -221,7 +221,8 @@ public function setValidationFilter(
221
Select::TYPE_CONDITION
222
);
223
$selectClone->where($noCouponWhereCondition, null, Select::TYPE_CONDITION);
224
- $this->_select = $this->getConnection()->select()->union([$select, $selectClone]);
+ $select = $this->getConnection()->select()->union([$select, $selectClone]);
225
+ $this->_select = $select;
226
} else {
227
$this->addFieldToFilter(
228
'main_table.coupon_type',
0 commit comments