16 lines
396 B
Python
16 lines
396 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(Website, self).sale_product_domain(),
|
||
|
[('detailed_type', '!=', 'course')],
|
||
|
])
|