oca-ocb-sale/odoo-bringout-oca-ocb-website_sale/website_sale/models/website_track.py
Ernad Husremovic 73afc09215 19.0 vanilla
2026-03-09 09:32:12 +01:00

11 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',
)