Odoo18-Base/addons/l10n_pe/models/res_city.py
2025-01-06 10:57:38 +07:00

10 lines
309 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class City(models.Model):
_inherit = "res.city"
l10n_pe_code = fields.Char('Code', help='This code will help with the '
'identification of each city in Peru.')