mrp_shared_operation/__manifest__.py

21 lines
745 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.
""",
'author': "Suherdy Yacob",
'depends': ['mrp'],
'data': [
'views/mrp_routing_workcenter_views.xml',
'views/mrp_bom_views.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}