diff --git a/app/code/Magento/InventoryLowQuantityNotification/Model/ResourceModel/LowQuantityCollection.php b/app/code/Magento/InventoryLowQuantityNotification/Model/ResourceModel/LowQuantityCollection.php index 2ca3250bb4dc..7add49b4545a 100644 --- a/app/code/Magento/InventoryLowQuantityNotification/Model/ResourceModel/LowQuantityCollection.php +++ b/app/code/Magento/InventoryLowQuantityNotification/Model/ResourceModel/LowQuantityCollection.php @@ -168,7 +168,7 @@ private function joinCatalogProduct() $this->getSelect()->joinLeft( ['product_entity_varchar_store' => $productEavVarcharTable], 'product_entity_varchar_store.entity_id = product_entity.entity_id ' . - 'AND product_entity_varchar_store.store_id = ' . $this->filterStoreId . + 'AND product_entity_varchar_store.store_id = ' . $this->filterStoreId . ' ' . 'AND product_entity_varchar_store.attribute_id = ' . $nameAttribute->getAttributeId(), ['product_name' => 'IFNULL(product_entity_varchar_store.value, product_entity_varchar.value)'] );