mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
11 lines
235 B
Python
11 lines
235 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 MrpProduction(models.Model):
|
|
_inherit = "mrp.production"
|
|
|
|
notes = fields.Html()
|