[MERGE] lp:~xrg/openobject-addons/trunk-patch18
[odoo/odoo.git] / addons / mrp / __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" : "Manufacturing Resource Planning",
25     "version" : "1.1",
26     "author" : "OpenERP SA",
27     "website" : "http://www.openerp.com",
28     "category" : "Generic Modules/Production",
29     "depends" : ["procurement", "stock", "resource", "purchase", "product","process"],
30     "description": """
31     This is the base module to manage the manufacturing process in OpenERP.
32
33     Features:
34     * Make to Stock / Make to Order (by line)
35     * Multi-level BoMs, no limit
36     * Multi-level routing, no limit
37     * Routing and work center integrated with analytic accounting
38     * Scheduler computation periodically / Just In Time module
39     * Multi-pos, multi-warehouse
40     * Different reordering policies
41     * Cost method by product: standard price, average price
42     * Easy analysis of troubles or needs
43     * Very flexible
44     * Allows to browse Bill of Materials in complete structure
45         that include child and phantom BoMs
46     It supports complete integration and planification of stockable goods,
47     consumable of services. Services are completely integrated with the rest
48     of the software. For instance, you can set up a sub-contracting service
49     in a BoM to automatically purchase on order the assembly of your production.
50
51     Reports provided by this module:
52     * Bill of Material structure and components
53     * Load forecast on workcenters
54     * Print a production order
55     * Stock forecasts
56     Dashboard provided by this module::
57     * List of next production orders
58     * List of deliveries (out picking)
59     * Graph of work center load
60     * List of procurement in exception
61     """,
62     'init_xml': [],
63     'update_xml': [
64         'security/mrp_security.xml',
65         'security/ir.model.access.csv',
66         'mrp_workflow.xml',
67         'mrp_data.xml',
68         'wizard/mrp_product_produce_view.xml',
69         'wizard/change_production_qty_view.xml',
70         'wizard/mrp_price_view.xml',
71         'wizard/mrp_workcenter_load_view.xml',
72         'wizard/mrp_change_standard_price_view.xml',
73         'mrp_view.xml',
74         'mrp_report.xml',
75         'company_view.xml',
76         'process/stockable_product_process.xml',
77         'process/service_product_process.xml',
78         'process/procurement_process.xml',
79         'mrp_installer.xml',
80         'report/mrp_report_view.xml',
81         'report/mrp_production_order_view.xml',
82         'board_manufacturing_view.xml',
83
84
85     ],
86     'demo_xml': [
87          'mrp_demo.xml',
88     ],
89     'test': [
90          'test/mrp_procurement.yml',
91          'test/mrp_packs.yml',
92          'test/mrp_phantom_bom.yml',
93          'test/mrp_production_order.yml',
94          'test/mrp_report.yml',
95
96     ],
97     'installable': True,
98     'active': False,
99     'certificate': '0032052481373',
100 }
101 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: