# Copyright 2018 - TODAY, Open Source Integrators # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class ProductTemplate(models.Model): _inherit = "product.template" warranty = fields.Integer(string="Warranty Duration") warranty_type = fields.Selection( [ ("day", "Day(s)"), ("week", "Week(s)"), ("month", "Month(s)"), ("year", "Year(s)"), ], required=True, default="day", )