Skip to Content
Menú
This question has been flagged
2 Respostes
1437 Vistes

is it possible to hide out-of-stock items/variants on website?

Avatar
Descartar
Best Answer

Hi,

Inherit the WebsiteSale controller

Create a custom module or add this to an existing one:

from odoo.addons.website_sale.controllers.main import WebsiteSale

from odoo.http import request


class WebsiteSaleCustom(WebsiteSale):


    def _get_search_domain(self, search, category, attrib_values, **kwargs):

        domain = super()._get_search_domain(search, category, attrib_values, **kwargs)

        domain += [('qty_available', '>', 0)]

        return domain


You can also use 'virtual_available' instead of 'qty_available' if you want to account for incoming stock.


ihope it is use full

Avatar
Descartar
Related Posts Respostes Vistes Activitat
1
d’abr. 24
3284
1
de nov. 22
2152
2
de març 15
3929
1
de des. 23
2770
1
de nov. 23
2026