8 lines
205 B
Python
8 lines
205 B
Python
from odoo import fields, models
|
|
|
|
|
|
class MrpProduction(models.Model):
|
|
_inherit = 'mrp.production'
|
|
|
|
ifc_project_id = fields.Many2one('grt.ifc.project', string='IFC Engineering Document', index=True)
|