11 lines
248 B
Python
11 lines
248 B
Python
|
# -*- 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')
|