diff --git a/app/code/Magento/Reports/Model/Resource/Product/Lowstock/Collection.php b/app/code/Magento/Reports/Model/Resource/Product/Lowstock/Collection.php index 0c71c26aa69eb..78c758649b49c 100644 --- a/app/code/Magento/Reports/Model/Resource/Product/Lowstock/Collection.php +++ b/app/code/Magento/Reports/Model/Resource/Product/Lowstock/Collection.php @@ -297,7 +297,7 @@ public function useNotifyStockQtyFilter($storeId = null) (int)$this->stockConfiguration->getNotifyStockQty($storeId), $this->_getInventoryItemField('notify_stock_qty') ); - $this->getSelect()->where('qty < ?', $notifyStockExpr); + $this->getSelect()->where($this->_getInventoryItemField('qty') . ' < ?', $notifyStockExpr); return $this; } }