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

20 lines
714 B
Python

{
'name': 'Shared MRP Operations',
'version': '1.0',
'category': 'Manufacturing/Manufacturing',
'summary': 'Allow MRP Operations to be assigned to multiple BOMs',
'description': """
This module allows defining MRP Operations (Work Center Usages) that can be shared across multiple Bills of Materials.
It adds a Many2many relationship between Operations and BOMs, and updates the Manufacturing Order generation logic
to include these shared operations.
""",
'depends': ['mrp'],
'data': [
'views/mrp_routing_workcenter_views.xml',
'views/mrp_bom_views.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}