24 lines
768 B
Python

# -*- coding: utf-8 -*-
{
'name': 'C2C Multi-Output BOM',
'version': '1.0',
'category': 'Manufacturing',
'summary': 'Supports multiple finished product outputs per Manufacturing Order',
'description': """
Extends the standard Odoo MRP BOM to allow multiple output products.
- Example: 100kg Roses → 200 packs x 500g + byproduct stems
- Output lines auto-populate on MO completion
- Lot/serial tracking per output line
""",
'author': 'Antigravity',
'depends': ['mrp', 'product_expiry'],
'data': [
'security/ir.model.access.csv',
'views/mrp_bom_views.xml',
'views/mrp_production_views.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}