[MERGE] merged with main addons trunk
[odoo/odoo.git] / addons / purchase / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22
23 {
24     'name': 'Purchase Management',
25     'version': '1.1',
26     'category': 'Purchase Management',
27     'complexity': "easy",
28     'description': """
29 Purchase module is for generating a purchase order for purchase of goods from a supplier.
30 =========================================================================================
31
32 A supplier invoice is created for the particular purchase order.
33
34 Dashboard for purchase management that includes:
35     * Current Purchase Orders
36     * Draft Purchase Orders
37     * Graph for quantity and amount per month
38
39     """,
40     'author': 'OpenERP SA',
41     'website': 'http://www.openerp.com',
42     'images' : ['images/purchase_order.jpeg', 'images/purchase_analysis.jpeg', 'images/request_for_quotation.jpeg'],
43     'depends': ['stock', 'process', 'procurement'],
44     'data': [
45         'security/purchase_security.xml',
46         'security/ir.model.access.csv',
47         'purchase_workflow.xml',
48         'purchase_sequence.xml',
49         'company_view.xml',
50         'purchase_data.xml',
51         'wizard/purchase_order_group_view.xml',
52         'wizard/purchase_installer.xml',
53         'wizard/purchase_line_invoice_view.xml',
54         'purchase_report.xml',
55         'purchase_view.xml',
56         'stock_view.xml',
57         'partner_view.xml',
58         'process/purchase_process.xml',
59         'report/purchase_report_view.xml',
60         'board_purchase_view.xml',
61         'edi/purchase_order_action_data.xml',
62     ],
63     'test': [
64         'test/process/cancel_order.yml',
65         'test/process/rfq2order2done.yml',
66         'test/process/generate_invoice_from_reception.yml',
67         'test/process/run_scheduler.yml',
68         'test/process/merge_order.yml',
69         'test/process/edi_purchase_order.yml',
70         'test/ui/print_report.yml',
71         'test/ui/duplicate_order.yml',
72         'test/ui/delete_order.yml',
73     ],
74     'demo': [
75         'purchase_order_demo.yml',
76         'purchase_demo.xml',
77     ],
78     'installable': True,
79     'active': False,
80     'certificate': '0057234283549',
81 }
82 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: