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