Odoo18-Base/addons/l10n_cl/models/res_currency.py

11 lines
348 B
Python
Raw Permalink Normal View History

2025-03-10 10:52:11 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import _, api, fields, models
class ResCurrency(models.Model):
_name = "res.currency"
_inherit = "res.currency"
l10n_cl_currency_code = fields.Char('Currency Code', translate=True)
l10n_cl_short_name = fields.Char('Short Name', translate=True)