12345678910111213141516171819202122 |
- # -*- coding: utf-8 -*-
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- {
- 'name': 'MRP Subcontracting Repair',
- 'version': '1.0',
- 'category': 'Manufacturing/Repair',
- 'description': """
- Bridge module between MRP subcontracting and Repair
- """,
- 'depends': [
- 'mrp_subcontracting', 'repair'
- ],
- 'data': [
- 'security/ir.model.access.csv',
- 'security/mrp_subcontracting_repair_security.xml',
- ],
- 'installable': True,
- 'auto_install': True,
- 'license': 'LGPL-3',
- }
|