# Copyright 2019-2020: Druidoo () # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import _, api, fields, models from odoo.exceptions import ValidationError class ResPartnerAgeRange(models.Model): _inherit = "res.partner.age.range" name = fields.Char(translate=True) active = fields.Boolean(string="Active", default=True)