[MERGE] From Christophe Chauvet (Sylëam)
[odoo/odoo.git] / addons / mrp / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     "name" : "Manufacturing Resource Planning",
26     "version" : "1.1",
27     "author" : "Tiny",
28     "website" : "http://www.openerp.com",
29     "category" : "Generic Modules/Production",
30     "depends" : ["stock", "hr", "purchase", "product","process"],
31     "description": """
32     This is the base module to manage the manufacturing process in Open ERP.
33
34     Features:
35     * Make to Stock / Make to Order (by line)
36     * Multi-level BoMs, no limit
37     * Multi-level routing, no limit
38     * Routing and workcenter integrated with analytic accounting
39     * Scheduler computation periodically / Just In Time module
40     * Multi-pos, multi-warehouse
41     * Different reordering policies
42     * Cost method by product: standard price, average price
43     * Easy analysis of troubles or needs
44     * Very flexible
45     * Allows to browse Bill of Materials in complete structure
46         that include child and phantom BoMs
47     It supports complete integration and planification of stockable goods,
48     consumable of services. Services are completely integrated with the rest
49     of the software. For instance, you can set up a sub-contracting service
50     in a BoM to automatically purchase on order the assembly of your production.
51
52     Reports provided by this module:
53     * Bill of Material structure and components
54     * Load forecast on workcenters
55     * Print a production order
56     * Stock forecasts
57     """,
58     'author': 'Tiny',
59     'website': 'http://www.openerp.com',
60     'depends': ['stock', 'hr', 'purchase', 'product', 'process'],
61     'init_xml': [],
62     'update_xml': [
63         'security/mrp_security.xml',
64         'security/ir.model.access.csv',
65         'mrp_workflow.xml',
66         'mrp_data.xml',
67         'mrp_view.xml',
68         'mrp_wizard.xml',
69         'mrp_report.xml',
70         'company_view.xml',
71         'process/stockable_product_process.xml',
72         'process/service_product_process.xml',
73         'process/procurement_process.xml'
74     ],
75     'demo_xml': ['mrp_demo.xml', 'mrp_order_point.xml'],
76     'installable': True,
77     'active': False,
78     'certificate': '0032052481373',
79 }
80 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: