[NEW] event_speaker

This commit is contained in:
clementthomas
2023-11-21 12:53:18 +01:00
parent 894332cd6c
commit e2fe8aba56
7 changed files with 233 additions and 0 deletions

View File

@@ -0,0 +1 @@
from . import event_event

View File

@@ -0,0 +1,10 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import fields, models
class EventEvent(models.Model):
_inherit = "event.event"
speakers = fields.Many2many(
'res.partner', string="Speakers"
)