diff options
Diffstat (limited to 'addons/l10n_pe/models/res_city.py')
| -rw-r--r-- | addons/l10n_pe/models/res_city.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/addons/l10n_pe/models/res_city.py b/addons/l10n_pe/models/res_city.py new file mode 100644 index 00000000..c9e653ae --- /dev/null +++ b/addons/l10n_pe/models/res_city.py @@ -0,0 +1,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.') |
