コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
1623 ビュー

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

アバター
破棄
最善の回答

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

アバター
破棄
関連投稿 返信 ビュー 活動
1
4月 24
3411
1
11月 22
3279
2
3月 15
4033
2
8月 25
224
1
12月 23
2933