-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhr_transfer.py
261 lines (213 loc) · 9.33 KB
/
hr_transfer.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
# -*- 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/>.
#
#
from datetime import datetime
from dateutil.relativedelta import relativedelta
from openerp import netsvc
from openerp.osv import fields, orm
from openerp.tools import DEFAULT_SERVER_DATE_FORMAT
from openerp.tools.translate import _
class hr_transfer(orm.Model):
_name = 'hr.department.transfer'
_description = 'Departmental Transfer'
_inherit = ['mail.thread', 'ir.needaction_mixin']
_columns = {
'employee_id': fields.many2one(
'hr.employee', 'Employee', required=True, readonly=True,
states={'draft': [('readonly', False)]}),
'src_id': fields.many2one(
'hr.job', 'From', required=True, readonly=True,
states={'draft': [('readonly', False)]}),
'dst_id': fields.many2one(
'hr.job', 'Destination', required=True, readonly=True,
states={'draft': [('readonly', False)]}),
'src_department_id': fields.related(
'src_id', 'department_id', type='many2one',
relation='hr.department', string='From Department',
store=True, readonly=True),
'dst_department_id': fields.related(
'dst_id', 'department_id', type='many2one',
relation='hr.department', store=True,
string='Destination Department', readonly=True),
'src_contract_id': fields.many2one(
'hr.contract', 'From Contract', readonly=True,
states={'draft': [('readonly', False)]}),
'dst_contract_id': fields.many2one(
'hr.contract', 'Destination Contract', readonly=True),
'date': fields.date('Effective Date', required=True, readonly=True,
states={'draft': [('readonly', False)]}),
'state': fields.selection([
('draft', 'Draft'),
('confirm', 'Confirmed'),
('pending', 'Pending'),
('done', 'Done'),
('cancel', 'Cancelled'),
],
'State', readonly=True),
}
_rec_name = 'date'
_defaults = {
'state': 'draft',
}
_track = {
'state': {
'hr_transfer.mt_alert_xfer_confirmed':
lambda self, cr, uid, obj, ctx=None: obj['state'] == 'confirm',
'hr_transfer.mt_alert_xfer_pending':
lambda self, cr, uid, obj, ctx=None: obj['state'] == 'pending',
'hr_transfer.mt_alert_xfer_done':
lambda self, cr, uid, obj, ctx=None: obj['state'] == 'done',
},
}
def _needaction_domain_get(self, cr, uid, context=None):
users_obj = self.pool.get('res.users')
if users_obj.has_group(cr, uid, 'base.group_hr_manager'):
domain = [('state', '=', 'confirm')]
return domain
return False
def unlink(self, cr, uid, ids, context=None):
for xfer in self.browse(cr, uid, ids, context=context):
if xfer.state not in ['draft']:
raise orm.except_orm(
_('Unable to Delete Transfer!'),
_('Transfer has been initiated. Either cancel the transfer'
' or create another transfer to undo it.')
)
return super(hr_transfer, self).unlink(cr, uid, ids, context=context)
def onchange_employee(self, cr, uid, ids, employee_id, context=None):
res = {'value': {'src_id': False, 'src_contract_id': False}}
if employee_id:
ee = self.pool.get('hr.employee').browse(
cr, uid, employee_id, context=context)
res['value']['src_id'] = ee.contract_id.job_id.id
res['value']['src_contract_id'] = ee.contract_id.id
return res
def effective_date_in_future(self, cr, uid, ids, context=None):
today = datetime.now().date()
for xfer in self.browse(cr, uid, ids, context=context):
effective_date = datetime.strptime(
xfer.date, DEFAULT_SERVER_DATE_FORMAT).date()
if effective_date <= today:
return False
return True
def _check_state(self, cr, uid, contract_id, effective_date, context=None):
contract_obj = self.pool.get('hr.contract')
data = contract_obj.read(
cr, uid, contract_id, ['state', 'date_end'], context=context)
if data['state'] not in [
'trial', 'trial_ending', 'open', 'contract_ending'
]:
raise orm.except_orm(
_('Warning!'),
_('The current state of the contract does not permit changes.')
)
if data.get('date_end', False) and data['date_end'] != '':
dContractEnd = datetime.strptime(
data['date_end'], DEFAULT_SERVER_DATE_FORMAT)
dEffective = datetime.strptime(
effective_date, DEFAULT_SERVER_DATE_FORMAT)
if dEffective >= dContractEnd:
raise orm.except_orm(
_('Warning!'),
_('The contract end date is on or before the effective '
'date of the transfer.')
)
return True
def transfer_contract(
self, cr, uid, contract_id, job_id, xfer_id, effective_date,
context=None
):
contract_obj = self.pool.get('hr.contract')
# Copy the contract and adjust start/end dates, job id, etc.
# accordingly.
#
default = {
'job_id': job_id,
'date_start': effective_date,
'name': False,
'state': False,
'message_ids': False,
'trial_date_start': False,
'trial_date_end': False,
}
data = contract_obj.copy_data(
cr, uid, contract_id, default=default, context=context)
c_id = contract_obj.create(cr, uid, data, context=context)
if c_id:
vals = {}
wkf = netsvc.LocalService('workflow')
# Set the new contract to the appropriate state
wkf.trg_validate(uid, 'hr.contract', c_id, 'signal_confirm', cr)
# Terminate the current contract (and trigger appropriate state
# change)
vals['date_end'] = datetime.strptime(
effective_date, '%Y-%m-%d').date() + relativedelta(days=-1)
contract_obj.write(cr, uid, contract_id, vals, context=context)
wkf.trg_validate(
uid, 'hr.contract', contract_id, 'signal_done', cr)
# Link to the new contract
self.pool.get(
'hr.department.transfer').write(
cr, uid, xfer_id, {'dst_contract_id': c_id},
context=context)
return
def state_confirm(self, cr, uid, ids, context=None):
for xfer in self.browse(cr, uid, ids, context=context):
self._check_state(
cr, uid, xfer.src_contract_id.id, xfer.date, context=context)
self.write(cr, uid, xfer.id, {'state': 'confirm'}, context=context)
return True
def state_done(self, cr, uid, ids, context=None):
employee_obj = self.pool.get('hr.employee')
today = datetime.now().date()
for xfer in self.browse(cr, uid, ids, context=context):
if datetime.strptime(
xfer.date, DEFAULT_SERVER_DATE_FORMAT
).date() <= today:
self._check_state(
cr, uid, xfer.src_contract_id.id, xfer.date,
context=context)
employee_obj.write(
cr, uid, xfer.employee_id.id, {
'department_id': xfer.dst_department_id.id},
context=context)
self.transfer_contract(
cr, uid, xfer.src_contract_id.id, xfer.dst_id.id,
xfer.id, xfer.date, context=context)
self.write(
cr, uid, xfer.id, {'state': 'done'}, context=context)
else:
return False
return True
def try_pending_department_transfers(self, cr, uid, context=None):
"""Completes pending departmental transfers. Called from
the scheduler."""
xfer_obj = self.pool.get('hr.department.transfer')
today = datetime.now().date()
xfer_ids = xfer_obj.search(cr, uid, [
('state', '=', 'pending'),
('date', '<=', today.strftime(
DEFAULT_SERVER_DATE_FORMAT)),
], context=context)
wkf = netsvc.LocalService('workflow')
[wkf.trg_validate(
uid, 'hr.department.transfer', xfer.id, 'signal_done', cr)
for xfer in self.browse(cr, uid, xfer_ids, context=context)]
return True