14 lines
464 B
Python
14 lines
464 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
track_service = fields.Selection(track_visibility='onchange')
|
|
expense_policy = fields.Selection(track_visibility='onchange')
|
|
invoice_policy = fields.Selection(track_visibility='onchange')
|