2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'MRP Byproducts',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'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
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/manufacturing',
|
2018-01-16 06:58:15 +01:00
|
|
|
'depends': ['base', 'mrp'],
|
|
|
|
'data': [
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'views/mrp_bom_views.xml'
|
|
|
|
],
|
|
|
|
'demo': [],
|
|
|
|
'test': [],
|
|
|
|
'installable': True,
|
|
|
|
'auto_install': False,
|
|
|
|
}
|