merge
[odoo/odoo.git] / addons / mrp_operations / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name': 'Workcenter Production start end workflow',
26     'version': '1.0',
27     'category': 'Generic Modules/Production',
28     'description': """
29      This module adds state, date_start,date_stop in production order operation lines
30      (in the "Workcenters" tab)
31      State: draft, confirm, done, cancel
32      When finishing/confirming,cancelling production orders set all state lines to the according state
33      Create menus:
34          Production Management > All Operations
35          Production Management > All Operations > Operations To Do (state="confirm")
36      Which is a view on "Workcenters" lines in production order,
37      editable tree
38
39     Add buttons in the form view of production order under workcenter tab:
40     * start (set state to confirm), set date_start
41     * done (set state to done), set date_stop
42     * set to draft (set state to draft)
43     * cancel set state to cancel
44
45     When the production order becomes "ready to produce", operations must
46     become 'confirmed'. When the production order is done, all operations
47     must become done.
48
49     The field delay is the delay(stop date - start date).
50     So that we can compare the theoretic delay and real delay.
51
52     """,
53     'author': 'Tiny',
54     'website': 'http://www.openerp.com',
55     'depends': ['stock', 'hr', 'purchase', 'product', 'mrp'],
56     'init_xml': [],
57     'update_xml': [
58         'security/ir.model.access.csv',
59         'mrp_operations_workflow.xml',
60         'mrp_operations_view.xml',
61         'mrp_operations_report.xml',
62         'process/mrp_operation_process.xml'
63     ],
64     'demo_xml': ['mrp_operation_data.xml'],
65     'installable': True,
66     'active': False,
67     'certificate': '0056233813133',
68 }
69 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: