[FIX]crm: crm lead/opp merge, when opp has stage with state cancel, then it is less...
[odoo/odoo.git] / addons / procurement / __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' : 'Procurements',
25     'version' : '1.0',
26     'author' : 'OpenERP SA',
27     'website' : 'http://www.openerp.com',
28     'category' : 'Hidden/Dependency',
29     'depends' : ['base','process', 'product', 'stock'],
30     'description': """
31 This is the module for computing Procurements.
32 ==============================================
33
34 In the MRP process, procurements orders are created to launch manufacturing
35 orders, purchase orders, stock allocations. Procurement orders are
36 generated automatically by the system and unless there is a problem, the
37 user will not be notified. In case of problems, the system will raise some
38 procurement exceptions to inform the user about blocking problems that need
39 to be resolved manually (like, missing BoM structure or missing supplier).
40
41 The procurement order will schedule a proposal for automatic procurement
42 for the product which needs replenishment. This procurement will start a
43 task, either a purchase order form for the supplier, or a production order
44 depending on the product's configuration.
45     """,
46     'data': [
47         'security/ir.model.access.csv',
48         'security/procurement_security.xml',
49         'procurement_data.xml',
50         'wizard/make_procurement_view.xml',
51         'wizard/mrp_procurement_view.xml',
52         'wizard/orderpoint_procurement_view.xml',
53         'wizard/schedulers_all_view.xml',
54         'procurement_view.xml',
55         'procurement_workflow.xml',
56         'process/procurement_process.xml',
57         'company_view.xml',
58         'board_mrp_procurement_view.xml',
59     ],
60     'demo': ['stock_orderpoint.xml','procurement_demo.xml'],
61     'test': ['test/procurement.yml'],
62     'installable': True,
63     'auto_install': True,
64     'images': ['images/compute_schedulers.jpeg','images/config_companies_sched.jpeg', 'images/minimum_stock_rules.jpeg'],
65 }
66 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: