[IMP] event_speaker:

speakers move from event_event to event_tracks
This commit is contained in:
clementthomas
2024-03-22 12:26:40 +01:00
parent a935241ec0
commit f524724a0f
4 changed files with 28 additions and 3 deletions

View File

@@ -1 +1,2 @@
from . import event_event
from . import event_track
#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 EventTrack(models.Model):
_inherit = "event.track"
speaker_ids = fields.Many2many(
'res.partner', string="Speakers"
)