flectra/addons/mrp_byproduct/__manifest__.py
2018-01-16 03:05:52 -08:00

35 lines
862 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'MRP Byproducts',
'author' : 'Odoo S.A',
'version': '1.0',
'category': 'Manufacturing',
'description': """
This module allows you to produce several products from one production order.
=============================================================================
You can configure by-products in the bill of material.
Without this module:
--------------------
A + B + C -> D
With this module:
-----------------
A + B + C -> D + E
""",
'website': 'https://flectrahq.com/page/manufacturing',
'depends': ['base', 'mrp'],
'data': [
'security/ir.model.access.csv',
'views/mrp_bom_views.xml'
],
'demo': [],
'test': [],
'installable': True,
'auto_install': False,
}