[MERGE] lp:~xrg/openobject-addons/trunk-patch18
[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': 'Work Center Production start end workflow',
25     'version': '1.0',
26     'category': 'Generic Modules/Production',
27     'description': """
28      This module adds state, date_start,date_stop in production order operation lines
29      (in the "Work Centers" tab)
30      State: draft, confirm, done, cancel
31      When finishing/confirming,cancelling production orders set all state lines to the according state
32      Create menus:
33          Production Management > All Operations
34          Production Management > All Operations > Operations To Do (state="confirm")
35      Which is a view on "Work Centers" lines in production order,
36      editable tree
37
38     Add buttons in the form view of production order under workcenter tab:
39     * start (set state to confirm), set date_start
40     * done (set state to done), set date_stop
41     * set to draft (set state to draft)
42     * cancel set state to cancel
43
44     When the production order becomes "ready to produce", operations must
45     become 'confirmed'. When the production order is done, all operations
46     must become done.
47
48     The field delay is the delay(stop date - start date).
49     So that we can compare the theoretic delay and real delay.
50
51     """,
52     'author': 'OpenERP SA',
53     'website': 'http://www.openerp.com',
54     'depends': ['mrp'],
55     'init_xml': [],
56     'update_xml': [
57         'security/ir.model.access.csv',
58         'mrp_operations_workflow.xml',
59         'mrp_operations_view.xml',
60         'mrp_operations_report.xml',
61         'report/mrp_workorder_analysis_view.xml',
62         'process/mrp_operation_process.xml'
63     ],
64     'demo_xml': ['mrp_operation_data.xml'],
65     'test': ['test/mrp_operations.yml', 'test/mrp_operations_report.yml'],
66     'installable': True,
67     'active': False,
68     'certificate': '0056233813133',
69 }
70 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: