~openerp-community/openobject-doc/6.1

« back to all changes in this revision

Viewing changes to source/technical_guide/project_gtd.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:: project_gtd
 
3
    :synopsis: Getting Things Done - Time Management Module (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="/project_gtd"></div>
 
20
    <script src="http://js-kit.com/ratings.js"></script>
 
21
 
 
22
Getting Things Done - Time Management Module (*project_gtd*)
 
23
============================================================
 
24
:Module: project_gtd
 
25
:Name: Getting Things Done - Time Management Module
 
26
:Version: 5.0.1.0
 
27
:Author: Tiny
 
28
:Directory: project_gtd
 
29
:Web: 
 
30
:Official module: yes
 
31
:Quality certified: yes
 
32
 
 
33
Description
 
34
-----------
 
35
 
 
36
::
 
37
 
 
38
  This module implements all concepts defined by the Getting Things Done
 
39
  methodology. This world-wide used methodology is used for personal
 
40
  time management improvement.
 
41
  
 
42
  Getting Things Done (commonly abbreviated as GTD) is an action management
 
43
  method created by David Allen, and described in a book of the same name.
 
44
  
 
45
  GTD rests on the principle that a person needs to move tasks out of the mind by
 
46
  recording them externally. That way, the mind is freed from the job of
 
47
  remembering everything that needs to be done, and can concentrate on actually
 
48
  performing those tasks.
 
49
 
 
50
Download links
 
51
--------------
 
52
 
 
53
You can download this module as a zip file in the following version:
 
54
 
 
55
  * `5.0 <http://www.openerp.com/download/modules/5.0/project_gtd.zip>`_
 
56
  * `trunk <http://www.openerp.com/download/modules/trunk/project_gtd.zip>`_
 
57
 
 
58
 
 
59
Dependencies
 
60
------------
 
61
 
 
62
 * :mod:`project`
 
63
 
 
64
Reports
 
65
-------
 
66
 
 
67
None
 
68
 
 
69
 
 
70
Menus
 
71
-------
 
72
 
 
73
 * Project Management/Configuration/Time Management
 
74
 * Project Management/Configuration/Time Management/Contexts
 
75
 * Project Management/Configuration/Time Management/Timeboxes
 
76
 * Project Management/Configuration/Time Management/Timeboxes/My Timeboxes
 
77
 * Project Management/Time Management
 
78
 * Project Management/Time Management/My Inbox
 
79
 * Project Management/Time Management/All My Timeboxes
 
80
 * Project Management/Time Management/My Daily Timebox
 
81
 
 
82
Views
 
83
-----
 
84
 
 
85
 * project.gtd.context.tree (tree)
 
86
 * project.gtd.context.form (form)
 
87
 * project.gtd.timebox.tree (tree)
 
88
 * project.gtd.timebox.form (form)
 
89
 * project.task.gtd.inbox.tree (tree)
 
90
 * project.gtd.timebox.treelist (tree)
 
91
 * \* INHERIT project.task.form.timebox (form)
 
92
 
 
93
 
 
94
Objects
 
95
-------
 
96
 
 
97
Object: project.gtd.context (project.gtd.context)
 
98
#################################################
 
99
 
 
100
 
 
101
 
 
102
:project_default_id: Default Project, many2one, required
 
103
 
 
104
 
 
105
 
 
106
 
 
107
 
 
108
:name: Context, char, required
 
109
 
 
110
 
 
111
 
 
112
 
 
113
 
 
114
:sequence: Sequence, integer
 
115
 
 
116
 
 
117
 
 
118
 
 
119
Object: project.gtd.timebox (project.gtd.timebox)
 
120
#################################################
 
121
 
 
122
 
 
123
 
 
124
:context6_id: Context 6, many2one
 
125
 
 
126
 
 
127
 
 
128
 
 
129
 
 
130
:task1_ids: Tasks, one2many
 
131
 
 
132
 
 
133
 
 
134
 
 
135
 
 
136
:col_effective_hours: Effective Hours, boolean
 
137
 
 
138
 
 
139
 
 
140
 
 
141
 
 
142
:task3_ids: Tasks, one2many
 
143
 
 
144
 
 
145
 
 
146
 
 
147
 
 
148
:task6_ids: Tasks, one2many
 
149
 
 
150
 
 
151
 
 
152
 
 
153
 
 
154
:task_ids: Tasks, one2many
 
155
 
 
156
 
 
157
 
 
158
 
 
159
 
 
160
:user_id: User, many2one, required
 
161
 
 
162
 
 
163
 
 
164
 
 
165
 
 
166
:context4_id: Context 4, many2one
 
167
 
 
168
 
 
169
 
 
170
 
 
171
 
 
172
:parent_id: Parent Timebox, many2one
 
173
 
 
174
 
 
175
 
 
176
 
 
177
 
 
178
:task2_ids: Tasks, one2many
 
179
 
 
180
 
 
181
 
 
182
 
 
183
 
 
184
:col_project: Project, boolean
 
185
 
 
186
 
 
187
 
 
188
 
 
189
 
 
190
:type: Type, selection, required
 
191
 
 
192
 
 
193
 
 
194
 
 
195
 
 
196
:col_date_start: Date Start, boolean
 
197
 
 
198
 
 
199
 
 
200
 
 
201
 
 
202
:col_priority: Priority, boolean
 
203
 
 
204
 
 
205
 
 
206
 
 
207
 
 
208
:task4_ids: Tasks, one2many
 
209
 
 
210
 
 
211
 
 
212
 
 
213
 
 
214
:child_ids: Child Timeboxes, one2many
 
215
 
 
216
 
 
217
 
 
218
 
 
219
 
 
220
:context2_id: Context 2, many2one
 
221
 
 
222
 
 
223
 
 
224
 
 
225
 
 
226
:task5_ids: Tasks, one2many
 
227
 
 
228
 
 
229
 
 
230
 
 
231
 
 
232
:context3_id: Context 3, many2one
 
233
 
 
234
 
 
235
 
 
236
 
 
237
 
 
238
:name: Timebox, char, required
 
239
 
 
240
 
 
241
 
 
242
 
 
243
 
 
244
:context5_id: Context 5, many2one
 
245
 
 
246
 
 
247
 
 
248
 
 
249
 
 
250
:context1_id: Context 1, many2one, required
 
251
 
 
252
 
 
253
 
 
254
 
 
255
 
 
256
:col_planned_hours: Planned Hours, boolean
 
257
 
 
258
 
 
259
 
 
260
 
 
261
 
 
262
:col_deadline: Deadline, boolean
 
263
 
 
264