blob: 97010c28ab28c3c1e121eedacfbe7f58591e2286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Sales and MRP Management',
'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.
""",
'depends': ['mrp', 'sale_stock'],
'data': [
'security/ir.model.access.csv',
'views/mrp_production_views.xml',
'views/sale_order_views.xml'
],
'demo': [],
'installable': True,
'auto_install': True,
'license': 'LGPL-3',
}
|