mirror of
https://github.com/bringout/oca-ocb-l10n_americas.git
synced 2026-04-26 20:32:05 +02:00
9 lines
309 B
Python
9 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.')
|