# Copyright 2015-2020 Akretion (http://www.akretion.com) # @author Alexis de Lattre # @author Raphaƫl Valyi # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models, fields class ProductTemplate(models.Model): _inherit = 'product.template' # name = fields.Char( # track_visibility='onchange') # type = fields.Selection( # track_visibility='onchange') # categ_id = fields.Many2one( # track_visibility='onchange') # list_price = fields.Float( # track_visibility='onchange') # sale_ok = fields.Boolean( # track_visibility='onchange') # purchase_ok = fields.Boolean( # track_visibility='onchange') # active = fields.Boolean( # track_visibility='onchange')