oca-mrp/odoo-bringout-oca-manufacture-mrp_bom_note/mrp_bom_note/models/mrp_bom.py
2025-08-29 15:43:05 +02:00

10 lines
221 B
Python

# © 2015 Oihane Crucelaegui - AvanzOSC
# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html
from odoo import fields, models
class MrpBom(models.Model):
_inherit = "mrp.bom"
notes = fields.Html()