mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-21 15:32:06 +02:00
10 lines
221 B
Python
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()
|