mrp_shared_operation/models/mrp_bom.py
2026-02-11 11:56:58 +07:00

11 lines
264 B
Python

from odoo import fields, models
class MrpBom(models.Model):
_inherit = 'mrp.bom'
shared_operation_ids = fields.Many2many(
'mrp.routing.workcenter',
string='Shared Operations',
help='Operations shared across multiple BOMs.'
)