Files
manufacture/mrp_bom_note/models/mrp_bom.py
2020-02-05 15:08:47 +01: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 models, fields
class MrpBom(models.Model):
_inherit = 'mrp.bom'
notes = fields.Html()