blob: c9e653ae81b1439b2635d39e2d989d15283505af (
plain)
1
2
3
4
5
6
7
8
9
|
# 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.')
|