-
Notifications
You must be signed in to change notification settings - Fork 0
/
hr_contract.py
280 lines (241 loc) · 9.39 KB
/
hr_contract.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# -*- coding:utf-8 -*-
#
#
# Copyright (C) 2013 Michael Telahun Makonnen <[email protected]>.
# All Rights Reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
import time
from datetime import datetime
from dateutil.relativedelta import relativedelta
from openerp import netsvc
from openerp.tools import DEFAULT_SERVER_DATE_FORMAT
from openerp.osv import fields, orm
class hr_contract(orm.Model):
_name = 'hr.contract'
_inherit = ['hr.contract', 'mail.thread', 'ir.needaction_mixin']
def _get_ids_from_employee(self, cr, uid, ids, context=None):
res = []
employee_pool = self.pool['hr.employee']
for ee in employee_pool.browse(cr, uid, ids, context=context):
for contract in ee.contract_ids:
if contract.state not in ['pending_done', 'done']:
res.append(contract.id)
return res
def _get_department(self, cr, uid, ids, field_name, arg, context=None):
res = dict.fromkeys(ids, False)
states = ['pending_done', 'done']
for contract in self.browse(cr, uid, ids, context=context):
if contract.department_id and contract.state in states:
res[contract.id] = contract.department_id.id
elif contract.employee_id.department_id:
res[contract.id] = contract.employee_id.department_id.id
return res
_columns = {
'state': fields.selection(
[
('draft', 'Draft'),
('trial', 'Trial'),
('trial_ending', 'Trial Period Ending'),
('open', 'Open'),
('contract_ending', 'Ending'),
('pending_done', 'Pending Termination'),
('done', 'Completed')
],
'State',
readonly=True,
),
# store this field in the database and trigger a change only if the
# contract is in the right state: we don't want future changes to an
# employee's department to impact past contracts that have now ended.
# Increased priority to override hr_simplify.
'department_id': fields.function(
_get_department,
type='many2one',
method=True,
obj='hr.department',
string="Department",
readonly=True,
store={
'hr.employee': (_get_ids_from_employee, ['department_id'], 10)
},
),
# At contract end this field will hold the job_id, and the
# job_id field will be set to null so that modules that
# reference job_id don't include deactivated employees.
'end_job_id': fields.many2one(
'hr.job',
'Job Title',
readonly=True,
),
# The following are redefined again to make them editable only in
# certain states
'employee_id': fields.many2one(
'hr.employee',
"Employee",
required=True,
readonly=True,
states={
'draft': [('readonly', False)]
},
),
'type_id': fields.many2one(
'hr.contract.type',
"Contract Type",
required=True,
readonly=True,
states={'draft': [('readonly', False)]},
),
'date_start': fields.date(
'Start Date',
required=True,
readonly=True,
states={'draft': [('readonly', False)]},
),
'wage': fields.float(
'Wage',
digits=(16, 2),
required=True,
readonly=True,
states={'draft': [('readonly', False)]},
help="Basic Salary of the employee",
),
}
_defaults = {
'state': 'draft',
}
_track = {
'state': {
'hr_contract_state.mt_alert_trial_ending': (
lambda s, cr, u, o, c=None: o['state'] == 'trial_ending'),
'hr_contract_state.mt_alert_open': (
lambda s, cr, u, o, c=None: o['state'] == 'open'),
'hr_contract_state.mt_alert_contract_ending': (
lambda s, cr, u, o, c=None: o['state'] == 'contract_ending'),
},
}
def _needaction_domain_get(self, cr, uid, context=None):
users_obj = self.pool.get('res.users')
domain = []
if users_obj.has_group(cr, uid, 'base.group_hr_manager'):
domain = [
('state', 'in', ['draft', 'contract_ending', 'trial_ending'])]
return domain
return False
def onchange_job(self, cr, uid, ids, job_id, context=None):
import logging
_l = logging.getLogger(__name__)
_l.warning('hr_contract_state: onchange_job()')
res = False
if isinstance(ids, (int, long)):
ids = [ids]
if ids:
contract = self.browse(cr, uid, ids[0], context=None)
if contract.state != 'draft':
return res
return super(hr_contract, self).onchange_job(
cr, uid, ids, job_id, context=context
)
def condition_trial_period(self, cr, uid, ids, context=None):
for contract in self.browse(cr, uid, ids, context=context):
if not contract.trial_date_start:
return False
return True
def try_signal_ending_contract(self, cr, uid, context=None):
d = datetime.now().date() + relativedelta(days=+30)
ids = self.search(cr, uid, [
('state', '=', 'open'),
('date_end', '<=', d.strftime(
DEFAULT_SERVER_DATE_FORMAT))
], context=context)
if len(ids) == 0:
return
wkf = netsvc.LocalService('workflow')
for contract in self.browse(cr, uid, ids, context=context):
wkf.trg_validate(
uid, 'hr.contract', contract.id, 'signal_ending_contract', cr
)
def try_signal_contract_completed(self, cr, uid, context=None):
d = datetime.now().date()
ids = self.search(cr, uid, [
('state', '=', 'open'),
('date_end', '<', d.strftime(
DEFAULT_SERVER_DATE_FORMAT))
], context=context)
if len(ids) == 0:
return
wkf = netsvc.LocalService('workflow')
for contract in self.browse(cr, uid, ids, context=context):
wkf.trg_validate(
uid, 'hr.contract', contract.id, 'signal_pending_done', cr
)
def try_signal_ending_trial(self, cr, uid, context=None):
d = datetime.now().date() + relativedelta(days=+10)
ids = self.search(cr, uid, [
('state', '=', 'trial'),
('trial_date_end', '<=', d.strftime(
DEFAULT_SERVER_DATE_FORMAT))
], context=context)
if len(ids) == 0:
return
wkf = netsvc.LocalService('workflow')
for contract in self.browse(cr, uid, ids, context=context):
wkf.trg_validate(
uid, 'hr.contract', contract.id, 'signal_ending_trial', cr
)
def try_signal_open(self, cr, uid, context=None):
d = datetime.now().date() + relativedelta(days=-5)
ids = self.search(cr, uid, [
('state', '=', 'trial_ending'),
('trial_date_end', '<=', d.strftime(
DEFAULT_SERVER_DATE_FORMAT))
], context=context)
if len(ids) == 0:
return
wkf = netsvc.LocalService('workflow')
for contract in self.browse(cr, uid, ids, context=context):
wkf.trg_validate(
uid, 'hr.contract', contract.id, 'signal_open', cr
)
def onchange_start(self, cr, uid, ids, date_start, context=None):
return {
'value': {
'trial_date_start': date_start,
},
}
def state_trial(self, cr, uid, ids, context=None):
self.write(cr, uid, ids, {'state': 'trial'}, context=context)
return True
def state_open(self, cr, uid, ids, context=None):
self.write(cr, uid, ids, {'state': 'open'}, context=context)
return True
def state_pending_done(self, cr, uid, ids, context=None):
self.write(cr, uid, ids, {'state': 'pending_done'}, context=context)
return True
def state_done(self, cr, uid, ids, context=None):
for i in ids:
data = self.read(
cr, uid, i, ['date_end', 'job_id'], context=context)
vals = {'state': 'done',
'date_end': False,
'job_id': False,
'end_job_id': data['job_id'][0]}
if data.get('date_end', False):
vals['date_end'] = data['date_end']
else:
vals['date_end'] = time.strftime(DEFAULT_SERVER_DATE_FORMAT)
self.write(cr, uid, ids, vals, context=context)
return True