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

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()