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