Files
manufacture/mrp_bom_note/models/mrp_bom.py
2023-05-07 03:23:21 +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()