13 lines
379 B
Python
13 lines
379 B
Python
# Copyright 2016-2022 Akretion France
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
purchase_method = fields.Selection(tracking=True)
|
|
purchase_line_warn = fields.Selection(tracking=True)
|