1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_pe_reports/models/res_country.py
2024-12-10 09:04:09 +07:00

11 lines
330 B
Python

from odoo import fields, models
class ResCountry(models.Model):
_inherit = "res.country"
l10n_pe_code = fields.Char("Code PE", help="Country code to be used on purchase reports.")
l10n_pe_agreement_code = fields.Char(
"Agreement Code", help="Agreement code defined by SUNAT to avoid double taxation."
)