Files
manufacture/mrp_bom_note/models/mrp_bom.py
2024-06-26 10:54:41 +02:00

11 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()