8 lines
184 B
Python
8 lines
184 B
Python
from odoo import fields, models
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = "account.move"
|
|
|
|
event_registration_id = fields.Many2one("event.registration", string="Stagiaire")
|