summaryrefslogtreecommitdiff
path: root/addons/purchase_requisition/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/purchase_requisition/__manifest__.py')
-rw-r--r--addons/purchase_requisition/__manifest__.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/addons/purchase_requisition/__manifest__.py b/addons/purchase_requisition/__manifest__.py
new file mode 100644
index 00000000..6681c175
--- /dev/null
+++ b/addons/purchase_requisition/__manifest__.py
@@ -0,0 +1,28 @@
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+{
+ 'name': 'Purchase Agreements',
+ 'version': '0.1',
+ 'category': 'Inventory/Purchase',
+ 'description': """
+This module allows you to manage your Purchase Agreements.
+===========================================================
+
+Manage calls for tenders and blanket orders. Calls for tenders are used to get
+competing offers from different vendors and select the best ones. Blanket orders
+are agreements you have with vendors to benefit from a predetermined pricing.
+""",
+ 'depends': ['purchase'],
+ 'demo': ['data/purchase_requisition_demo.xml'],
+ 'data': [
+ 'security/purchase_requisition_security.xml',
+ 'security/ir.model.access.csv',
+ 'data/purchase_requisition_data.xml',
+ 'views/product_views.xml',
+ 'views/purchase_views.xml',
+ 'views/purchase_requisition_views.xml',
+ 'views/res_config_settings_views.xml',
+ 'report/purchase_requisition_report.xml',
+ 'report/report_purchaserequisition.xml',
+ ],
+ 'license': 'LGPL-3',
+}