First Commit

This commit is contained in:
2026-05-31 10:17:09 +07:00
commit 17a9c69379
4547 changed files with 1170384 additions and 0 deletions
@@ -0,0 +1,9 @@
from odoo import fields, models
class MrpBom(models.Model):
_inherit = 'mrp.bom'
ifc_project_id = fields.Many2one('grt.ifc.project', string='IFC Engineering Document', index=True)
is_ifc_permanent = fields.Boolean(string='IFC Permanent BoM', default=False, index=True)
source_estimated_bom_id = fields.Many2one('mrp.bom', string='Source Estimated BoM', copy=False)