mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
12 lines
284 B
Python
12 lines
284 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2015 Oihane Crucelaegui - AvanzOSC
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
from openerp import models, fields
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
mrp_notes = fields.Html(string='Production Notes')
|