10 lines
226 B
Python
10 lines
226 B
Python
from odoo import fields, models
|
|
|
|
|
|
class Event(models.Model):
|
|
_inherit = 'event.event'
|
|
|
|
currency_id = fields.Many2one(
|
|
'res.currency', string='Currency',
|
|
related='company_id.currency_id', readonly=True)
|