12 lines
315 B
Python
12 lines
315 B
Python
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class WebsiteTrack(models.Model):
|
||
|
_inherit = 'website.track'
|
||
|
|
||
|
product_id = fields.Many2one(
|
||
|
comodel_name='product.product', ondelete='cascade', readonly=True, index='btree_not_null',
|
||
|
)
|