14 lines
326 B
Python
14 lines
326 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2021 Joan Marín <Github@JoanMarin>
|
|
# 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")
|