Files
2024-12-30 00:06:13 +01:00

13 lines
407 B
Python

# Copyright 2016-2024 Akretion France (https://www.akretion.com/)
# @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)