[ADD] event_speaker: add speakers to event

This commit is contained in:
clementthomas
2023-09-19 15:26:52 +02:00
parent 4530fc244c
commit d8b820902a
5 changed files with 44 additions and 0 deletions

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"
)