blob: 473cad7f7947dceeb747a52148c3e6a9a3ee7d33 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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')
l10n_cl_short_name = fields.Char('Short Name')
|