Files
manufacture/mrp_production_note/models/mrp_production.py
2015-06-22 10:14:41 +02: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()