10 lines
309 B
Python
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.')
|