[IMP] account: performance improvement on the creation of new account.move (opw ...
[odoo/odoo.git] / addons / mrp_operations / __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 Operations',
25     'version': '1.0',
26     'category': 'Manufacturing',
27     'description': """
28 This module adds state, date_start, date_stop in manufacturing order operation lines (in the 'Work Orders' tab).
29 ================================================================================================================
30
31 Status: draft, confirm, done, cancel
32 When finishing/confirming, cancelling manufacturing orders set all state lines
33 to the according state.
34
35 Create menus:
36 -------------
37     **Manufacturing** > **Manufacturing** > **Work Orders**
38
39 Which is a view on 'Work Orders' lines in manufacturing order.
40
41 Add buttons in the form view of manufacturing order under workorders tab:
42 -------------------------------------------------------------------------
43     * start (set state to confirm), set date_start
44     * done (set state to done), set date_stop
45     * set to draft (set state to draft)
46     * cancel set state to cancel
47
48 When the manufacturing order becomes 'ready to produce', operations must
49 become 'confirmed'. When the manufacturing order is done, all operations
50 must become done.
51
52 The field 'Working Hours' is the delay(stop date - start date).
53 So, that we can compare the theoretic delay and real delay. 
54     """,
55     'author': 'OpenERP SA',
56     'website': 'http://www.openerp.com',
57     'images': ['images/work_order_analysis.jpeg','images/work_order_planning.jpeg','images/work_order.jpeg'],
58     'depends': ['mrp'],
59     'data': [
60         'security/ir.model.access.csv',
61         'mrp_operation_data.xml',
62         'mrp_operations_workflow.xml',
63         'mrp_operations_view.xml',
64         'mrp_operations_report.xml',
65         'report/mrp_workorder_analysis_view.xml',
66         'process/mrp_operation_process.xml',
67         'mrp_operations_workflow_instance.xml'
68     ],
69     'demo': [ 
70              'mrp_operations_demo.yml'
71     ],
72     'test': [ 
73 #        'test/workcenter_operations.yml',
74     ],
75     'installable': True,
76     'auto_install': False,
77 }
78 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: