mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
19 lines
658 B
Python
19 lines
658 B
Python
# Copyright 2016 Antiun Ingenieria S.L. - Javier Iniesta
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class MrpProduction(models.Model):
|
|
_inherit = "mrp.production"
|
|
|
|
sale_id = fields.Many2one(
|
|
comodel_name='sale.order', string='Sale order', readonly=True,
|
|
store=True, related='procurement_group_id.sale_id')
|
|
partner_id = fields.Many2one(
|
|
comodel_name='res.partner', related='sale_id.partner_id',
|
|
string='Customer', store=True)
|
|
commitment_date = fields.Datetime(
|
|
related='sale_id.commitment_date', string='Commitment Date',
|
|
store=True)
|