12 lines
353 B
Python
12 lines
353 B
Python
# Copyright 2016-2022 Akretion France (http://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 models, fields
|
|
|
|
|
|
class MrpBom(models.Model):
|
|
_inherit = 'mrp.bom'
|
|
|
|
sale_ok = fields.Boolean(related='product_tmpl_id.sale_ok', store=True)
|