[MERGE] lp881356
[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     "sequence": 19,
28     'complexity': "easy",
29     'description': """
30 Purchase module is for generating a purchase order for purchase of goods from a supplier.
31 =========================================================================================
32
33 A supplier invoice is created for the particular purchase order.
34
35 Dashboard for purchase management that includes:
36     * Current Purchase Orders
37     * Draft Purchase Orders
38     * Graph for quantity and amount per month
39
40     """,
41     'author': 'OpenERP SA',
42     'website': 'http://www.openerp.com',
43     'images' : ['images/purchase_order.jpeg', 'images/purchase_analysis.jpeg', 'images/request_for_quotation.jpeg'],
44     'depends': ['stock', 'process', 'procurement'],
45     'data': [
46         'security/purchase_security.xml',
47         'security/ir.model.access.csv',
48         'purchase_workflow.xml',
49         'purchase_sequence.xml',
50         'company_view.xml',
51         'purchase_data.xml',
52         'wizard/purchase_order_group_view.xml',
53         'wizard/purchase_installer.xml',
54         'wizard/purchase_line_invoice_view.xml',
55         'purchase_report.xml',
56         'purchase_view.xml',
57         'stock_view.xml',
58         'partner_view.xml',
59         'process/purchase_process.xml',
60         'report/purchase_report_view.xml',
61         'board_purchase_view.xml',
62         'edi/purchase_order_action_data.xml',
63     ],
64     'test': [
65         'test/process/cancel_order.yml',
66         'test/process/rfq2order2done.yml',
67         'test/process/generate_invoice_from_reception.yml',
68         'test/process/run_scheduler.yml',
69         'test/process/merge_order.yml',
70         'test/process/edi_purchase_order.yml',
71         'test/process/invoice_on_poline.yml',
72         'test/ui/print_report.yml',
73         'test/ui/duplicate_order.yml',
74         'test/ui/delete_order.yml',
75     ],
76     'demo': [
77         'purchase_order_demo.yml',
78         'purchase_demo.xml',
79     ],
80     'installable': True,
81     'auto_install': False,
82     'certificate': '0057234283549',
83     'application': True,
84 }
85 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: