Odoo18-Base/addons/website_sale/models/website_track.py

12 lines
315 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# 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',
)