Files
manufacture/mrp_production_note/models/mrp_production.py
2023-09-13 16:48:12 +03:00

13 lines
395 B
Python

# -*- encoding: utf-8 -*-
##############################################################################
# For copyright and license notices, see __openerp__.py file in root directory
##############################################################################
from openerp import models, fields
class MrpProduction(models.Model):
_inherit = 'mrp.production'
notes = fields.Html()