Files
manufacture/mrp_bom_note/models/mrp_bom.py
2020-10-29 14:20:22 +07:00

12 lines
247 B
Python

# -*- coding: utf-8 -*-
# © 2015 Oihane Crucelaegui - AvanzOSC
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp import models, fields
class MrpBom(models.Model):
_inherit = 'mrp.bom'
notes = fields.Html()