-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Magento\Catalog\Api\ProductRenderListInterface returns products regardless of visibility #20409
Comments
Hi @Floddy. Thank you for your report.
Please make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce. To deploy vanilla Magento instance on our environment, please, add a comment to the issue:
where @Floddy do you confirm that you was able to reproduce the issue on vanilla Magento instance following steps to reproduce?
|
Hi @engcom-backlog-nazar. Thank you for working on this issue.
|
Hi @Surabhi-Cedcoss. Thank you for working on this issue.
|
@Floddy Thanks for pointing out such a small issue. You can directly create PR for these type of issues. (I have created one this time). |
Hi @milindsingh. Thank you for working on this issue.
|
@milindsingh Thank you for verifying the issue. Based on the provided information internal tickets |
Hi @Floddy. Thank you for your report. The fix will be available with the upcoming 2.3.1 release. |
Hi @Floddy. Thank you for your report. The fix will be available with the upcoming 2.2.8 release. |
Summary (*)
Magento\Catalog\Api\ProductRenderListInterface returns products regardless of visibility.
Reproduced in 2.2.7, but 2.3-develop has the same error in di.xml.
Examples (*)
Hard to give an example, but here's some abuse of object manager ran in the magerun2 dev console.
//Initiating stuff that needs to be initiated...
\Magento\Framework\App\ObjectManager::getInstance()->get('\Magento\Framework\App\State')->setAreaCode(\Magento\Framework\App\Area::AREA_FRONTEND);
\Magento\Framework\App\ObjectManager::getInstance()->configure(\Magento\Framework\App\ObjectManager::getInstance()->get('\Magento\Framework\ObjectManager\ConfigLoaderInterface')->load(\Magento\Framework\App\Area::AREA_FRONTEND));
//Where it actually happens
$sc = \Magento\Framework\App\ObjectManager::getInstance()->get('\Magento\Framework\Api\SearchCriteriaBuilder')->addFilter('sku', '24-WG081-gray')->create();
\Magento\Framework\App\ObjectManager::getInstance()->get('\Magento\Catalog\Api\ProductRenderListInterface')->getList($sc, 1, 'USD')->getItems();
Expected result
No results on the search
Actual result
One result on the search
Proposed solution
The issue is that in this line:
https://github.com/magento/magento2/blob/2.3-develop/app/code/Magento/CatalogInventory/etc/di.xml#L114
the type has a leading backslash, which for some reason has the effect that Magento\Catalog\Model\ProductVisibilityCondition, as defined here:
https://github.com/magento/magento2/blob/2.3-develop/app/code/Magento/Catalog/etc/di.xml#L1082
is never ran.
Simply removing the leading backslash resolves the issue.
The text was updated successfully, but these errors were encountered: