~ubuntu-branches/ubuntu/quantal/openerp6.1/quantal

« back to all changes in this revision

Viewing changes to openerp/addons/mrp_operations/__openerp__.py

  • Committer: Package Import Robot
  • Author(s): Yolanda Robla
  • Date: 2012-09-20 15:29:00 UTC
  • Revision ID: package-import@ubuntu.com-20120920152900-woyy3yww8z6acmsk
Tags: upstream-6.1-1+dfsg
ImportĀ upstreamĀ versionĀ 6.1-1+dfsg

Show diffs side-by-side

added added

removed removed

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