~openerp-community/openobject-doc/6.1

« back to all changes in this revision

Viewing changes to source/technical_guide/mrp_operations.rst

  • Committer: TruongSinh Tran
  • Date: 2009-07-19 19:02:35 UTC
  • Revision ID: truongsinh@vipescoserver-20090719190235-fu3bxcrbpvwuk5h7
[FIX] build_i18n.py .. raw:: html

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
.. module:: mrp_operations
 
3
    :synopsis: Workcenter Production start end workflow (Official, Quality Certified)
 
4
    :noindex:
 
5
.. 
 
6
 
 
7
.. raw:: html
 
8
 
 
9
      <br />
 
10
    <link rel="stylesheet" href="../_static/hide_objects_in_sidebar.css" type="text/css" />
 
11
 
 
12
.. tip:: This module is part of the Open ERP software, the leading Open Source 
 
13
  enterprise management system. If you want to discover Open ERP, check our 
 
14
  `screencasts <http://openerp.tv>`_ or download 
 
15
  `Open ERP <http://openerp.com>`_ directly.
 
16
 
 
17
.. raw:: html
 
18
 
 
19
    <div class="js-kit-rating" title="" permalink="" standalone="yes" path="/mrp_operations"></div>
 
20
    <script src="http://js-kit.com/ratings.js"></script>
 
21
 
 
22
Workcenter Production start end workflow (*mrp_operations*)
 
23
===========================================================
 
24
:Module: mrp_operations
 
25
:Name: Workcenter Production start end workflow
 
26
:Version: 5.0.1.0
 
27
:Author: Tiny
 
28
:Directory: mrp_operations
 
29
:Web: http://www.openerp.com
 
30
:Official module: yes
 
31
:Quality certified: yes
 
32
 
 
33
Description
 
34
-----------
 
35
 
 
36
::
 
37
 
 
38
  This module adds state, date_start,date_stop in production order operation lines
 
39
       (in the "Workcenters" tab)
 
40
       State: draft, confirm, done, cancel
 
41
       When finishing/confirming,cancelling production orders set all state lines to the according state
 
42
       Create menus:
 
43
           Production Management > All Operations
 
44
           Production Management > All Operations > Operations To Do (state="confirm")
 
45
       Which is a view on "Workcenters" lines in production order,
 
46
       editable tree
 
47
  
 
48
      Add buttons in the form view of production order under workcenter tab:
 
49
      * start (set state to confirm), set date_start
 
50
      * done (set state to done), set date_stop
 
51
      * set to draft (set state to draft)
 
52
      * cancel set state to cancel
 
53
  
 
54
      When the production order becomes "ready to produce", operations must
 
55
      become 'confirmed'. When the production order is done, all operations
 
56
      must become done.
 
57
  
 
58
      The field delay is the delay(stop date - start date).
 
59
      So that we can compare the theoretic delay and real delay.
 
60
 
 
61
Download links
 
62
--------------
 
63
 
 
64
You can download this module as a zip file in the following version:
 
65
 
 
66
  * `5.0 <http://www.openerp.com/download/modules/5.0/mrp_operations.zip>`_
 
67
  * `trunk <http://www.openerp.com/download/modules/trunk/mrp_operations.zip>`_
 
68
 
 
69
 
 
70
Dependencies
 
71
------------
 
72
 
 
73
 * :mod:`stock`
 
74
 * :mod:`hr`
 
75
 * :mod:`purchase`
 
76
 * :mod:`product`
 
77
 * :mod:`mrp`
 
78
 
 
79
Reports
 
80
-------
 
81
 
 
82
 * Workcenters Barcode
 
83
 
 
84
 * Start/Stop Barcode
 
85
 
 
86
Menus
 
87
-------
 
88
 
 
89
 * Manufacturing/All Work Orders
 
90
 * Manufacturing/All Work Orders/Work Orders to Do
 
91
 * Manufacturing/All Work Orders/Future Work Orders
 
92
 * Manufacturing/Configuration/Start - Stop Codes
 
93
 * Manufacturing/Work Order Events Using Bar Codes
 
94
 
 
95
Views
 
96
-----
 
97
 
 
98
 * mrp.production.workcenter.line.tree (tree)
 
99
 * mrp.production.workcenter.line.form (form)
 
100
 * mrp.production.workcenter.line.calendar (calendar)
 
101
 * mrp.production.workcenter.line.gantt (gantt)
 
102
 * mrp.production.code.tree (tree)
 
103
 * mrp.production.code.form (form)
 
104
 * mrp.production.operation.tree (tree)
 
105
 * graph.in.hrs.workcenter (graph)
 
106
 * mrp.perations.calendar (calendar)
 
107
 
 
108
 
 
109
Objects
 
110
-------
 
111
 
 
112
Object: mrp_operations.operation.code (mrp_operations.operation.code)
 
113
#####################################################################
 
114
 
 
115
 
 
116
 
 
117
:start_stop: Status, selection, required
 
118
 
 
119
 
 
120
 
 
121
 
 
122
 
 
123
:code: Code, char, required
 
124
 
 
125
 
 
126
 
 
127
 
 
128
 
 
129
:name: Operation Name, char, required
 
130
 
 
131
 
 
132
 
 
133
 
 
134
Object: mrp_operations.operation (mrp_operations.operation)
 
135
###########################################################
 
136
 
 
137
 
 
138
 
 
139
:code_id: Code, many2one, required
 
140
 
 
141
 
 
142
 
 
143
 
 
144
 
 
145
:date_finished: End Date, datetime
 
146
 
 
147
 
 
148
 
 
149
 
 
150
 
 
151
:date_start: Start Date, datetime
 
152
 
 
153
 
 
154
 
 
155
 
 
156
 
 
157
:production_id: Production, many2one, required
 
158
 
 
159
 
 
160
 
 
161
 
 
162
 
 
163
:order_date: Order Date, date, readonly
 
164
 
 
165
 
 
166
 
 
167
 
 
168
 
 
169
:workcenter_id: Workcenter, many2one, required
 
170
 
 
171