mirror of
https://github.com/bringout/oca-ocb-project.git
synced 2026-04-21 10:02:02 +02:00
9 lines
254 B
Python
9 lines
254 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class MrpBom(models.Model):
|
|
_inherit = 'mrp.bom'
|
|
|
|
project_id = fields.Many2one('project.project', domain=[('is_template', '=', False)])
|