# -*- coding: utf-8 -*- # Copyright 2021 Joan MarĂ­n # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, fields class ResCity(models.Model): _inherit = "res.city" code = fields.Char( string='City Code', help="The official code for the city")