Files
manufacture/mrp_production_note/models/mrp_production.py
2024-12-16 09:55:26 +05:30

12 lines
258 B
Python

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