forked from Mapan/odoo17e
11 lines
303 B
Python
11 lines
303 B
Python
# 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 _product_domain(self):
|
|
return expression.OR([[('rent_ok', '=', True)], super()._product_domain()])
|