98c88413e3cf351e2adb79968d2a50038f14227c
[odoo/odoo.git] / addons / mrp / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2008 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     "name" : "Manufacturing Resource Planning",
24     "version" : "1.0",
25     "author" : "Tiny",
26     "website" : "http://tinyerp.com/module_mrp.html",
27     "category" : "Generic Modules/Production",
28     "depends" : ["stock", "hr", "purchase", "product", "process"],
29     "description": """
30     This is the base module to manage the manufacturing process in Tiny ERP.
31
32     Features:
33     * Make to Stock / Make to Order (by line)
34     * Multi-level BoMs, no limit
35     * Multi-level routing, no limit
36     * Routing and workcenter integrated with analytic accounting
37     * Scheduler computation periodically / Just In Time module
38     * Multi-pos, multi-warehouse
39     * Different reordering policies
40     * Cost method by product: standard price, average price
41     * Easy analysis of troubles or needs
42     * Very flexible
43     * Allows to browse Bill of Materials in complete structure
44         that include child and phantom BoMs
45     It supports complete integration and planification of stockable goods,
46     consumable of services. Services are completly integrated with the rest
47     of the software. For instance, you can set up a sub-contracting service
48     in a BoM to automatically purchase on order the assembly of your production.
49
50     Reports provided by this module:
51     * Bill of Material structure and components
52     * Load forecast on workcenters
53     * Print a production order
54     * Stock forecasts
55     """,
56     "init_xml" : [],
57     "demo_xml" : ["mrp_demo.xml","mrp_order_point.xml"],
58     "update_xml" : [
59         "security/mrp_security.xml",
60         "security/ir.model.access.csv",
61         "mrp_workflow.xml", 
62         "mrp_data.xml",
63         "mrp_view.xml", 
64         "mrp_wizard.xml", 
65         "mrp_report.xml",
66         "company_view.xml",
67         "process/procurement_process.xml",
68     ],
69     "active": False,
70     "installable": True
71 }
72
73 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
74