1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/website_appointment_sale/models/website.py
2024-12-10 09:04:09 +07:00

16 lines
389 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
from odoo.osv import expression
class Website(models.Model):
_inherit = 'website'
def sale_product_domain(self):
return expression.AND([
super().sale_product_domain(),
[('detailed_type', '!=', 'booking_fees')],
])