blob: 27a2f78e5f253e564de0ae7310fd77589c6ea376 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- coding: utf-8 -*-
from odoo import fields, models
# defined for access rules
class Product(models.Model):
_inherit = 'product.product'
event_ticket_ids = fields.One2many('event.event.ticket', 'product_id', string='Event Tickets')
|