[ADD] agreement_mrp

This commit is contained in:
Sandip Mangukiya
2018-12-26 09:00:35 -08:00
committed by Maxime Chambreuil
parent 19ab42e585
commit 089dbda9b3
17 changed files with 191 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# Copyright (C) 2018 - TODAY, Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class MRPProduction(models.Model):
_inherit = "mrp.production"
agreement_id = fields.Many2one('agreement', 'Agreement')
serviceprofile_id = fields.Many2one('agreement.serviceprofile',
'Service Profile')