~openerp-community/openobject-doc/6.1

« back to all changes in this revision

Viewing changes to source/technical_guide/hr_timesheet.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:: hr_timesheet
 
3
    :synopsis: Human Resources (Timesheet encoding) (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="/hr_timesheet"></div>
 
20
    <script src="http://js-kit.com/ratings.js"></script>
 
21
 
 
22
Human Resources (Timesheet encoding) (*hr_timesheet*)
 
23
=====================================================
 
24
:Module: hr_timesheet
 
25
:Name: Human Resources (Timesheet encoding)
 
26
:Version: 5.0.1.0
 
27
:Author: Tiny
 
28
:Directory: hr_timesheet
 
29
:Web: http://www.openerp.com
 
30
:Official module: yes
 
31
:Quality certified: yes
 
32
 
 
33
Description
 
34
-----------
 
35
 
 
36
::
 
37
 
 
38
  This module implement a timesheet system. Each employee can encode and
 
39
  track their time spent on the different projects. A project is an
 
40
  analytic account and the time spent on a project generate costs on
 
41
  the analytic account.
 
42
  
 
43
  Lots of reporting on time and employee tracking are provided.
 
44
  
 
45
  It is completely integrated with the cost accounting module. It allows you
 
46
  to set up a management by affair.
 
47
 
 
48
Download links
 
49
--------------
 
50
 
 
51
You can download this module as a zip file in the following version:
 
52
 
 
53
  * `4.2 <http://www.openerp.com/download/modules/4.2/hr_timesheet.zip>`_
 
54
  * `5.0 <http://www.openerp.com/download/modules/5.0/hr_timesheet.zip>`_
 
55
  * `trunk <http://www.openerp.com/download/modules/trunk/hr_timesheet.zip>`_
 
56
 
 
57
 
 
58
Dependencies
 
59
------------
 
60
 
 
61
 * :mod:`account`
 
62
 * :mod:`hr`
 
63
 * :mod:`base`
 
64
 * :mod:`hr_attendance`
 
65
 * :mod:`process`
 
66
 
 
67
Reports
 
68
-------
 
69
 
 
70
 * Employee timesheet
 
71
 
 
72
 * Employees Timesheet
 
73
 
 
74
Menus
 
75
-------
 
76
 
 
77
 * Human Resources/Working Hours
 
78
 * Human Resources/Working Hours/My Working Hours
 
79
 * Human Resources/Working Hours/My Working Hours/My Working Hours of The Day
 
80
 * Human Resources/Working Hours/Working Hours
 
81
 * Human Resources/Working Hours/Working Hours/Working Hours of The Day
 
82
 * Human Resources/Reporting/Timesheet
 
83
 * Human Resources/Reporting/Timesheet/Employee Timesheet
 
84
 * Human Resources/Reporting/Timesheet/Print My Timesheet
 
85
 * Human Resources/Reporting/Timesheet/Employees Timesheet
 
86
 * Human Resources/Attendances/Sign in / Sign out by project
 
87
 
 
88
Views
 
89
-----
 
90
 
 
91
 * hr.analytic.timesheet.tree (tree)
 
92
 * hr.analytic.timesheet.form (form)
 
93
 * \* INHERIT hr.timesheet.employee.extd_form (form)
 
94
 
 
95
 
 
96
Objects
 
97
-------
 
98
 
 
99
Object: Timesheet line (hr.analytic.timesheet)
 
100
##############################################
 
101
 
 
102
 
 
103
 
 
104
:code: Code, char
 
105
 
 
106
 
 
107
 
 
108
 
 
109
 
 
110
:account_id: Analytic Account, many2one, required
 
111
 
 
112
 
 
113
 
 
114
 
 
115
 
 
116
:general_account_id: General Account, many2one, required
 
117
 
 
118
 
 
119
 
 
120
 
 
121
 
 
122
:line_id: Analytic line, many2one
 
123
 
 
124
 
 
125
 
 
126
 
 
127
 
 
128
:date: Date, date, required
 
129
 
 
130
 
 
131
 
 
132
 
 
133
 
 
134
:move_id: Move Line, many2one
 
135
 
 
136
 
 
137
 
 
138
 
 
139
 
 
140
:name: Description, char, required
 
141
 
 
142
 
 
143
 
 
144
 
 
145
 
 
146
:user_id: User, many2one
 
147
 
 
148
 
 
149
 
 
150
 
 
151
 
 
152
:product_id: Product, many2one
 
153
 
 
154
 
 
155
 
 
156
 
 
157
 
 
158
:product_uom_id: UoM, many2one
 
159
 
 
160
 
 
161
 
 
162
 
 
163
 
 
164
:journal_id: Analytic Journal, many2one, required
 
165
 
 
166
 
 
167
 
 
168
 
 
169
 
 
170
:to_invoice: Invoicing, many2one
 
171
 
 
172
 
 
173
 
 
174
 
 
175
 
 
176
:amount: Amount, float, required
 
177
 
 
178
 
 
179
 
 
180
 
 
181
 
 
182
:unit_amount: Quantity, float
 
183
 
 
184
 
 
185
 
 
186
 
 
187
 
 
188
:invoice_id: Invoice, many2one
 
189
 
 
190
 
 
191
 
 
192
 
 
193
 
 
194
:sheet_id: Sheet, many2one, readonly
 
195
 
 
196
 
 
197
 
 
198
 
 
199
 
 
200
:ref: Ref., char
 
201
 
 
202
 
 
203
 
 
204
 
 
205
 
 
206
:invoice_line_id: Invoice Line, many2one
 
207
 
 
208