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': 'Sales and MRP Management',
|
2018-01-16 12:08:17 +01:00
|
|
|
'author': 'Odoo S.A.',
|
2018-01-16 06:58:15 +01:00
|
|
|
'version': '1.0',
|
|
|
|
'category': 'Hidden',
|
|
|
|
'description': """
|
|
|
|
This module provides facility to the user to install mrp and sales modulesat a time.
|
|
|
|
====================================================================================
|
|
|
|
|
|
|
|
It is basically used when we want to keep track of production orders generated
|
|
|
|
from sales order. It adds sales name and sales Reference on production order.
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/manufacturing',
|
2018-01-16 06:58:15 +01:00
|
|
|
'depends': ['mrp', 'sale_stock'],
|
|
|
|
'data': [
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
],
|
|
|
|
'demo': [],
|
|
|
|
'test':[
|
|
|
|
'test/sale_mrp.yml',
|
|
|
|
],
|
|
|
|
'installable': True,
|
|
|
|
'auto_install': True,
|
|
|
|
}
|