summaryrefslogtreecommitdiff
path: root/addons/purchase_mrp/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/purchase_mrp/__manifest__.py')
-rw-r--r--addons/purchase_mrp/__manifest__.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/addons/purchase_mrp/__manifest__.py b/addons/purchase_mrp/__manifest__.py
new file mode 100644
index 00000000..e0301d0a
--- /dev/null
+++ b/addons/purchase_mrp/__manifest__.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+
+{
+ 'name': 'Purchase and MRP Management',
+ 'version': '1.0',
+ 'category': 'Inventory/Purchase',
+ 'description': """
+This module provides facility to the user to install mrp and purchase modules at a time.
+========================================================================================
+
+It is basically used when we want to keep track of production orders generated
+from purchase order.
+ """,
+ 'data': [
+ 'views/purchase_order_views.xml',
+ 'views/mrp_production_views.xml'
+ ],
+ 'depends': ['mrp', 'purchase_stock'],
+ 'installable': True,
+ 'auto_install': True,
+ 'license': 'LGPL-3',
+}