[MERGE] Sync with 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     'sequence': 19,
28     'summary': 'Purchase Orders, Receptions, Supplier Invoices',
29     'description': """
30 Manage goods requirement by Purchase Orders easily
31 ==================================================
32
33 Purchase management enables you to track your suppliers' price quotations and convert them into purchase orders if necessary.
34 OpenERP has several methods of monitoring invoices and tracking the receipt of ordered goods. You can handle partial deliveries in OpenERP, so you can keep track of items that are still to be delivered in your orders, and you can issue reminders automatically.
35
36 OpenERP’s replenishment management rules enable the system to generate draft purchase orders automatically, or you can configure it to run a lean process driven entirely by current production needs.
37
38 Dashboard / Reports for Purchase Management will include:
39 ---------------------------------------------------------
40 * Request for Quotations
41 * Purchase Orders Waiting Approval 
42 * Monthly Purchases by Category
43 * Receptions Analysis
44 * Purchase Analysis
45     """,
46     'author': 'OpenERP SA',
47     'website': 'http://www.openerp.com',
48     'images' : ['images/purchase_order.jpeg', 'images/purchase_analysis.jpeg', 'images/request_for_quotation.jpeg'],
49     'depends': ['stock', 'process', 'procurement'],
50     'data': [
51         'security/purchase_security.xml',
52         'security/ir.model.access.csv',
53         'purchase_workflow.xml',
54         'purchase_sequence.xml',
55         'company_view.xml',
56         'purchase_data.xml',
57         'wizard/purchase_order_group_view.xml',
58         'wizard/purchase_line_invoice_view.xml',
59         'purchase_report.xml',
60         'purchase_view.xml',
61         'stock_view.xml',
62         'partner_view.xml',
63         'process/purchase_process.xml',
64         'report/purchase_report_view.xml',
65         'board_purchase_view.xml',
66         'edi/purchase_order_action_data.xml',
67         'res_config_view.xml',
68     ],
69     'test': [
70         'test/process/cancel_order.yml',
71         'test/process/rfq2order2done.yml',
72         'test/process/generate_invoice_from_reception.yml',
73         'test/process/run_scheduler.yml',
74         'test/process/merge_order.yml',
75         'test/process/edi_purchase_order.yml',
76         'test/process/invoice_on_poline.yml',
77         'test/ui/print_report.yml',
78         'test/ui/duplicate_order.yml',
79         'test/ui/delete_order.yml',
80     ],
81     'demo': [
82         'purchase_order_demo.yml',
83         'purchase_demo.xml',
84     ],
85     'installable': True,
86     'auto_install': False,
87     'application': True,
88 }
89 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: