12 lines
272 B
Python
12 lines
272 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 ResCityZip(models.Model):
|
|
_inherit = "res.city.zip"
|
|
|
|
type = fields.Char(string='Type')
|