[Add]hr_holidays:improved code of subtype
[odoo/odoo.git] / addons / hr_holidays / hr_holidays.py
1 # -*- coding: utf-8 -*-
2 ##################################################################################
3 #
4 # Copyright (c) 2005-2006 Axelor SARL. (http://www.axelor.com)
5 # and 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 # $Id: hr.py 4656 2006-11-24 09:58:42Z Cyp $
8 #
9 #     This program is free software: you can redistribute it and/or modify
10 #     it under the terms of the GNU Affero General Public License as
11 #     published by the Free Software Foundation, either version 3 of the
12 #     License, or (at your option) any later version.
13 #
14 #     This program is distributed in the hope that it will be useful,
15 #     but WITHOUT ANY WARRANTY; without even the implied warranty of
16 #     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 #     GNU Affero General Public License for more details.
18 #
19 #     You should have received a copy of the GNU Affero General Public License
20 #     along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 #
22 ##############################################################################
23
24 import datetime, time
25 from itertools import groupby
26 from operator import itemgetter
27
28 import math
29 import netsvc
30 import tools
31 from osv import fields, osv
32 from tools.translate import _
33
34
35 class hr_holidays_status(osv.osv):
36     _name = "hr.holidays.status"
37     _description = "Leave Type"
38
39     def get_days(self, cr, uid, ids, employee_id, return_false, context=None):
40         cr.execute("""SELECT id, type, number_of_days, holiday_status_id FROM hr_holidays WHERE employee_id = %s AND state='validate' AND holiday_status_id in %s""",
41             [employee_id, tuple(ids)])
42         result = sorted(cr.dictfetchall(), key=lambda x: x['holiday_status_id'])
43         grouped_lines = dict((k, [v for v in itr]) for k, itr in groupby(result, itemgetter('holiday_status_id')))
44         res = {}
45         for record in self.browse(cr, uid, ids, context=context):
46             res[record.id] = {}
47             max_leaves = leaves_taken = 0
48             if not return_false:
49                 if record.id in grouped_lines:
50                     leaves_taken = -sum([item['number_of_days'] for item in grouped_lines[record.id] if item['type'] == 'remove'])
51                     max_leaves = sum([item['number_of_days'] for item in grouped_lines[record.id] if item['type'] == 'add'])
52             res[record.id]['max_leaves'] = max_leaves
53             res[record.id]['leaves_taken'] = leaves_taken
54             res[record.id]['remaining_leaves'] = max_leaves - leaves_taken
55         return res
56
57     def _user_left_days(self, cr, uid, ids, name, args, context=None):
58         return_false = False
59         employee_id = False
60         res = {}
61         if context and context.has_key('employee_id'):
62             if not context['employee_id']:
63                 return_false = True
64             employee_id = context['employee_id']
65         else:
66             employee_ids = self.pool.get('hr.employee').search(cr, uid, [('user_id','=',uid)], context=context)
67             if employee_ids:
68                 employee_id = employee_ids[0]
69             else:
70                 return_false = True
71         if employee_id:
72             res = self.get_days(cr, uid, ids, employee_id, return_false, context=context)
73         else:
74             res = dict.fromkeys(ids, {'leaves_taken': 0, 'remaining_leaves': 0, 'max_leaves': 0})
75         return res
76
77     _columns = {
78         'name': fields.char('Leave Type', size=64, required=True, translate=True),
79         'categ_id': fields.many2one('crm.meeting.type', 'Meeting Type',
80             help='Once a leave is validated, OpenERP will create a corresponding meeting of this type in the calendar.'),
81         'color_name': fields.selection([('red', 'Red'),('blue','Blue'), ('lightgreen', 'Light Green'), ('lightblue','Light Blue'), ('lightyellow', 'Light Yellow'), ('magenta', 'Magenta'),('lightcyan', 'Light Cyan'),('black', 'Black'),('lightpink', 'Light Pink'),('brown', 'Brown'),('violet', 'Violet'),('lightcoral', 'Light Coral'),('lightsalmon', 'Light Salmon'),('lavender', 'Lavender'),('wheat', 'Wheat'),('ivory', 'Ivory')],'Color in Report', required=True, help='This color will be used in the leaves summary located in Reporting\Leaves by Department.'),
82         'limit': fields.boolean('Allow to Override Limit', help='If you select this checkbox, the system allows the employees to take more leaves than the available ones for this type.'),
83         'active': fields.boolean('Active', help="If the active field is set to false, it will allow you to hide the leave type without removing it."),
84         'max_leaves': fields.function(_user_left_days, string='Maximum Allowed', help='This value is given by the sum of all holidays requests with a positive value.', multi='user_left_days'),
85         'leaves_taken': fields.function(_user_left_days, string='Leaves Already Taken', help='This value is given by the sum of all holidays requests with a negative value.', multi='user_left_days'),
86         'remaining_leaves': fields.function(_user_left_days, string='Remaining Leaves', help='Maximum Leaves Allowed - Leaves Already Taken', multi='user_left_days'),
87         'double_validation': fields.boolean('Apply Double Validation', help="When selected, the Allocation/Leave Requests for this type require a second validation to be approved."),
88     }
89     _defaults = {
90         'color_name': 'red',
91         'active': True,
92     }
93
94     def name_get(self, cr, uid, ids, context=None):
95         if not ids:
96             return []
97         res = []
98         for record in self.browse(cr, uid, ids, context=context):
99             name = record.name
100             if not record.limit:
101                 name = name + ('  (%d/%d)' % (record.leaves_taken or 0.0, record.max_leaves or 0.0))
102             res.append((record.id, name))
103         return res
104
105 hr_holidays_status()
106
107 class hr_holidays(osv.osv):
108     _name = "hr.holidays"
109     _description = "Leave"
110     _order = "type desc, date_from asc"
111     _inherit = [ 'mail.thread','ir.needaction_mixin']
112
113     def _employee_get(self, cr, uid, context=None):
114         ids = self.pool.get('hr.employee').search(cr, uid, [('user_id', '=', uid)], context=context)
115         if ids:
116             return ids[0]
117         return False
118
119     def _compute_number_of_days(self, cr, uid, ids, name, args, context=None):
120         result = {}
121         for hol in self.browse(cr, uid, ids, context=context):
122             if hol.type=='remove':
123                 result[hol.id] = -hol.number_of_days_temp
124             else:
125                 result[hol.id] = hol.number_of_days_temp
126         return result
127
128     def _check_date(self, cr, uid, ids):
129         for holiday in self.browse(cr, uid, ids):
130             holiday_ids = self.search(cr, uid, [('date_from', '<=', holiday.date_to), ('date_to', '>=', holiday.date_from), ('employee_id', '=', holiday.employee_id.id), ('id', '<>', holiday.id)])
131             if holiday_ids:
132                 return False
133         return True
134
135     _columns = {
136         'name': fields.char('Description', size=64),
137         'state': fields.selection([('draft', 'To Submit'), ('cancel', 'Cancelled'),('confirm', 'To Approve'), ('refuse', 'Refused'), ('validate1', 'Second Approval'), ('validate', 'Approved')],
138             'Status', readonly=True, help='The status is set to \'To Submit\', when a holiday request is created.\
139             \nThe status is \'To Approve\', when holiday request is confirmed by user.\
140             \nThe status is \'Refused\', when holiday request is refused by manager.\
141             \nThe status is \'Approved\', when holiday request is approved by manager.'),
142         'user_id':fields.related('employee_id', 'user_id', type='many2one', relation='res.users', string='User', store=True),
143         'date_from': fields.datetime('Start Date', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}, select=True),
144         'date_to': fields.datetime('End Date', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
145         'holiday_status_id': fields.many2one("hr.holidays.status", "Leave Type", required=True,readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
146         'employee_id': fields.many2one('hr.employee', "Employee", select=True, invisible=False, readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}, help='Leave Manager can let this field empty if this leave request/allocation is for every employee'),
147         'manager_id': fields.many2one('hr.employee', 'First Approval', invisible=False, readonly=True, help='This area is automatically filled by the user who validate the leave'),
148         'notes': fields.text('Reasons',readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
149         'number_of_days_temp': fields.float('Number of Days', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
150         'number_of_days': fields.function(_compute_number_of_days, string='Number of Days', store=True),
151         'meeting_id': fields.many2one('crm.meeting', 'Meeting'),
152         'type': fields.selection([('remove','Leave Request'),('add','Allocation Request')], 'Request Type', required=True, readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}, help="Choose 'Leave Request' if someone wants to take an off-day. \nChoose 'Allocation Request' if you want to increase the number of leaves available for someone", select=True),
153         'parent_id': fields.many2one('hr.holidays', 'Parent'),
154         'linked_request_ids': fields.one2many('hr.holidays', 'parent_id', 'Linked Requests',),
155         'department_id':fields.related('employee_id', 'department_id', string='Department', type='many2one', relation='hr.department', readonly=True, store=True),
156         'category_id': fields.many2one('hr.employee.category', "Category", help='Category of Employee', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
157         'holiday_type': fields.selection([('employee','By Employee'),('category','By Employee Category')], 'Allocation Mode', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}, help='By Employee: Allocation/Request for individual Employee, By Employee Category: Allocation/Request for group of employees in category', required=True),
158         'manager_id2': fields.many2one('hr.employee', 'Second Approval', readonly=True, help='This area is automaticly filled by the user who validate the leave with second level (If Leave type need second validation)'),
159         'double_validation': fields.related('holiday_status_id', 'double_validation', type='boolean', relation='hr.holidays.status', string='Apply Double Validation'),
160     }
161     _defaults = {
162         'employee_id': _employee_get,
163         'state': 'draft',
164         'type': 'remove',
165         'user_id': lambda obj, cr, uid, context: uid,
166         'holiday_type': 'employee'
167     }
168     _constraints = [
169         (_check_date, 'You can not have 2 leaves that overlaps on same day!', ['date_from','date_to']),
170     ] 
171     
172     _sql_constraints = [
173         ('type_value', "CHECK( (holiday_type='employee' AND employee_id IS NOT NULL) or (holiday_type='category' AND category_id IS NOT NULL))", "The employee or employee category of this request is missing."),
174         ('date_check2', "CHECK ( (type='add') OR (date_from <= date_to))", "The start date must be anterior to the end date."),
175         ('date_check', "CHECK ( number_of_days_temp >= 0 )", "The number of days must be greater than 0."),
176     ]
177
178     def _create_resource_leave(self, cr, uid, leaves, context=None):
179         '''This method will create entry in resource calendar leave object at the time of holidays validated '''
180         obj_res_leave = self.pool.get('resource.calendar.leaves')
181         for leave in leaves:
182             vals = {
183                 'name': leave.name,
184                 'date_from': leave.date_from,
185                 'holiday_id': leave.id,
186                 'date_to': leave.date_to,
187                 'resource_id': leave.employee_id.resource_id.id,
188                 'calendar_id': leave.employee_id.resource_id.calendar_id.id
189             }
190             obj_res_leave.create(cr, uid, vals, context=context)
191         return True
192
193     def _remove_resource_leave(self, cr, uid, ids, context=None):
194         '''This method will create entry in resource calendar leave object at the time of holidays cancel/removed'''
195         obj_res_leave = self.pool.get('resource.calendar.leaves')
196         leave_ids = obj_res_leave.search(cr, uid, [('holiday_id', 'in', ids)], context=context)
197         return obj_res_leave.unlink(cr, uid, leave_ids, context=context)
198
199     def onchange_type(self, cr, uid, ids, holiday_type):
200         result = {'value': {'employee_id': False}}
201         if holiday_type == 'employee':
202             ids_employee = self.pool.get('hr.employee').search(cr, uid, [('user_id','=', uid)])
203             if ids_employee:
204                 result['value'] = {
205                     'employee_id': ids_employee[0]
206                 }
207         return result
208
209     def onchange_employee(self, cr, uid, ids, employee_id):
210         result = {'value': {'department_id': False}}
211         if employee_id:
212             employee = self.pool.get('hr.employee').browse(cr, uid, employee_id)
213             result['value'] = {'department_id': employee.department_id.id}
214         return result
215
216     # TODO: can be improved using resource calendar method
217     def _get_number_of_days(self, date_from, date_to):
218         """Returns a float equals to the timedelta between two dates given as string."""
219
220         DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S"
221         from_dt = datetime.datetime.strptime(date_from, DATETIME_FORMAT)
222         to_dt = datetime.datetime.strptime(date_to, DATETIME_FORMAT)
223         timedelta = to_dt - from_dt
224         diff_day = timedelta.days + float(timedelta.seconds) / 86400
225         return diff_day
226
227     def unlink(self, cr, uid, ids, context=None):
228         for rec in self.browse(cr, uid, ids, context=context):
229             if rec.state not in ['draft', 'cancel', 'confirm']:
230                 raise osv.except_osv(_('Warning!'),_('You cannot delete a leave which is in %s state.')%(rec.state))
231         return super(hr_holidays, self).unlink(cr, uid, ids, context)
232
233     def onchange_date_from(self, cr, uid, ids, date_to, date_from):
234         """
235         If there are no date set for date_to, automatically set one 8 hours later than
236         the date_from.
237         Also update the number_of_days.
238         """
239         # date_to has to be greater than date_from
240         if (date_from and date_to) and (date_from > date_to):
241             raise osv.except_osv(_('Warning!'),_('The start date must be anterior to the end date.'))
242
243         result = {'value': {}}
244
245         # No date_to set so far: automatically compute one 8 hours later
246         if date_from and not date_to:
247             date_to_with_delta = datetime.datetime.strptime(date_from, tools.DEFAULT_SERVER_DATETIME_FORMAT) + datetime.timedelta(hours=8)
248             result['value']['date_to'] = str(date_to_with_delta)
249
250         # Compute and update the number of days
251         if (date_to and date_from) and (date_from <= date_to):
252             diff_day = self._get_number_of_days(date_from, date_to)
253             result['value']['number_of_days_temp'] = round(math.floor(diff_day))+1
254         else:
255             result['value']['number_of_days_temp'] = 0
256
257         return result
258
259     def onchange_date_to(self, cr, uid, ids, date_to, date_from):
260         """
261         Update the number_of_days.
262         """
263
264         # date_to has to be greater than date_from
265         if (date_from and date_to) and (date_from > date_to):
266             raise osv.except_osv(_('Warning!'),_('The start date must be anterior to the end date.'))
267
268         result = {'value': {}}
269
270         # Compute and update the number of days
271         if (date_to and date_from) and (date_from <= date_to):
272             diff_day = self._get_number_of_days(date_from, date_to)
273             result['value']['number_of_days_temp'] = round(math.floor(diff_day))+1
274         else:
275             result['value']['number_of_days_temp'] = 0
276
277         return result
278     
279     def write(self, cr, uid, ids, vals, context=None):
280         check_fnct = self.pool.get('hr.holidays.status').check_access_rights
281         for  holiday in self.browse(cr, uid, ids, context=context):
282             if holiday.state in ('validate','validate1') and not check_fnct(cr, uid, 'write', raise_exception=False):
283                 raise osv.except_osv(_('Warning!'),_('You cannot modify a leave request that has been approved. Contact a human resource manager.'))
284         return super(hr_holidays, self).write(cr, uid, ids, vals, context=context)
285
286     def set_to_draft(self, cr, uid, ids, context=None):
287         self.write(cr, uid, ids, {
288             'state': 'draft',
289             'manager_id': False,
290             'manager_id2': False,
291         })
292         wf_service = netsvc.LocalService("workflow")
293         for id in ids:
294             wf_service.trg_delete(uid, 'hr.holidays', id, cr)
295             wf_service.trg_create(uid, 'hr.holidays', id, cr)
296         to_unlink = []
297         for record in self.browse(cr, uid, ids, context=context):
298             for record2 in record.linked_request_ids:
299                 self.set_to_draft(cr, uid, [record2.id], context=context)
300                 to_unlink.append(record2.id)
301         if to_unlink:
302             self.unlink(cr, uid, to_unlink, context=context)
303         return True
304
305     def holidays_first_validate(self, cr, uid, ids, context=None):
306         self.check_holidays(cr, uid, ids, context=context)
307         obj_emp = self.pool.get('hr.employee')
308         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
309         manager = ids2 and ids2[0] or False
310         self.holidays_first_validate_notificate(cr, uid, ids, context=context)
311         return self.write(cr, uid, ids, {'state':'validate1', 'manager_id': manager})
312
313     def holidays_validate(self, cr, uid, ids, context=None):
314         self.check_holidays(cr, uid, ids, context=context)
315         obj_emp = self.pool.get('hr.employee')
316         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
317         manager = ids2 and ids2[0] or False
318         self.write(cr, uid, ids, {'state':'validate'})
319         data_holiday = self.browse(cr, uid, ids)
320         for record in data_holiday:
321             if record.double_validation:
322                 self.write(cr, uid, [record.id], {'manager_id2': manager})
323             else:
324                 self.write(cr, uid, [record.id], {'manager_id': manager})
325             if record.holiday_type == 'employee' and record.type == 'remove':
326                 meeting_obj = self.pool.get('crm.meeting')
327                 meeting_vals = {
328                     'name': record.name or _('Leave Request'),
329                     'categ_ids': record.holiday_status_id.categ_id and [(6,0,[record.holiday_status_id.categ_id.id])] or [],
330                     'duration': record.number_of_days_temp * 8,
331                     'description': record.notes,
332                     'user_id': record.user_id.id,
333                     'date': record.date_from,
334                     'end_date': record.date_to,
335                     'date_deadline': record.date_to,
336                     'state': 'open',            # to block that meeting date in the calendar
337                 }
338                 meeting_id = meeting_obj.create(cr, uid, meeting_vals)
339                 self._create_resource_leave(cr, uid, [record], context=context)
340                 self.write(cr, uid, ids, {'meeting_id': meeting_id})
341             elif record.holiday_type == 'category':
342                 emp_ids = obj_emp.search(cr, uid, [('category_ids', 'child_of', [record.category_id.id])])
343                 leave_ids = []
344                 for emp in obj_emp.browse(cr, uid, emp_ids):
345                     vals = {
346                         'name': record.name,
347                         'type': record.type,
348                         'holiday_type': 'employee',
349                         'holiday_status_id': record.holiday_status_id.id,
350                         'date_from': record.date_from,
351                         'date_to': record.date_to,
352                         'notes': record.notes,
353                         'number_of_days_temp': record.number_of_days_temp,
354                         'parent_id': record.id,
355                         'employee_id': emp.id
356                     }
357                     leave_ids.append(self.create(cr, uid, vals, context=None))
358                 wf_service = netsvc.LocalService("workflow")
359                 for leave_id in leave_ids:
360                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'confirm', cr)
361                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'validate', cr)
362                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'second_validate', cr)
363         self.holidays_validate_notificate(cr, uid, ids, context=context)
364         return True
365
366     def holidays_confirm(self, cr, uid, ids, context=None):
367         self.check_holidays(cr, uid, ids, context=context)
368         for record in self.browse(cr, uid, ids, context=context):
369             if record.employee_id and record.employee_id.parent_id and record.employee_id.parent_id.user_id:
370                 self.message_subscribe_users(cr, uid, [record.id], user_ids=[record.employee_id.parent_id.user_id.id], context=context)
371         self.holidays_confirm_notificate(cr, uid, ids, context=context)
372         return self.write(cr, uid, ids, {'state':'confirm'})
373
374     def holidays_refuse(self, cr, uid, ids, context=None):
375         obj_emp = self.pool.get('hr.employee')
376         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
377         manager = ids2 and ids2[0] or False
378         for holiday in self.browse(cr, uid, ids, context=context):
379             if holiday.state == 'validate1':
380                 self.write(cr, uid, [holiday.id], {'state': 'refuse', 'manager_id': manager})
381             else:
382                 self.write(cr, uid, [holiday.id], {'state': 'refuse', 'manager_id2': manager})
383         self.holidays_refuse_notificate(cr, uid, ids, context=context)
384         self.holidays_cancel(cr, uid, ids, context=context)
385         return True
386
387     def holidays_cancel(self, cr, uid, ids, context=None):
388         meeting_obj = self.pool.get('crm.meeting')
389         for record in self.browse(cr, uid, ids):
390             # Delete the meeting
391             if record.meeting_id:
392                 meeting_obj.unlink(cr, uid, [record.meeting_id.id])
393
394             # If a category that created several holidays, cancel all related
395             wf_service = netsvc.LocalService("workflow")
396             for request in record.linked_request_ids or []:
397                 wf_service.trg_validate(uid, 'hr.holidays', request.id, 'refuse', cr)
398
399         self._remove_resource_leave(cr, uid, ids, context=context)
400         return True
401
402     def check_holidays(self, cr, uid, ids, context=None):
403         holi_status_obj = self.pool.get('hr.holidays.status')
404         for record in self.browse(cr, uid, ids):
405             if record.holiday_type == 'employee' and record.type == 'remove':
406                 if record.employee_id and not record.holiday_status_id.limit:
407                     leaves_rest = holi_status_obj.get_days( cr, uid, [record.holiday_status_id.id], record.employee_id.id, False)[record.holiday_status_id.id]['remaining_leaves']
408                     if leaves_rest < record.number_of_days_temp:
409                         raise osv.except_osv(_('Warning!'), _('There are not enough %s allocated for employee %s; please create an allocation request for this leave type.') % (record.holiday_status_id.name, record.employee_id.name))
410         return True
411
412     # -----------------------------
413     # OpenChatter and notifications
414     # -----------------------------
415
416     def needaction_domain_get(self, cr, uid, ids, context=None):
417         emp_obj = self.pool.get('hr.employee')
418         empids = emp_obj.search(cr, uid, [('parent_id.user_id', '=', uid)], context=context)
419         dom = ['&', ('state', '=', 'confirm'), ('employee_id', 'in', empids)]
420         # if this user is a hr.manager, he should do second validations
421         if self.pool.get('res.users').has_group(cr, uid, 'base.group_hr_manager'):
422             dom = ['|'] + dom + [('state', '=', 'validate1')]
423         return dom
424
425     def create_notificate(self, cr, uid, ids, context=None):
426         for obj in self.browse(cr, uid, ids, context=context):
427             self.message_post(cr, uid, ids,
428                 _("Request <b>created</b>, waiting confirmation."), context=context)
429         return True
430
431     def holidays_confirm_notificate(self, cr, uid, ids, context=None):
432         for obj in self.browse(cr, uid, ids):
433             self.message_post(cr, uid, [obj.id],
434                 _("Request <b>submitted</b>, waiting for validation by the manager."), subtype="hr_holidays.mt_approve", context=context)
435
436     def holidays_first_validate_notificate(self, cr, uid, ids, context=None):
437         for obj in self.browse(cr, uid, ids, context=context):
438             self.message_post(cr, uid, [obj.id],
439                 _("Request <b>approved</b>, waiting second validation."), context=context)
440
441     def holidays_validate_notificate(self, cr, uid, ids, context=None):
442         for obj in self.browse(cr, uid, ids):
443             if obj.double_validation:
444                 self.message_post(cr, uid, [obj.id],
445                     _("Request <b>validated</b>."), context=context)
446             else:
447                 self.message_post(cr, uid, [obj.id],
448                     _("The request has been <b>approved</b>."), subtype="hr_holidays.mt_approved", context=context)
449
450     def holidays_refuse_notificate(self, cr, uid, ids, context=None):
451         for obj in self.browse(cr, uid, ids):
452             self.message_post(cr, uid, [obj.id],
453                 _("Request <b>refused</b>"), subtype="hr_holidays.mt_refused", context=context)
454
455
456 class resource_calendar_leaves(osv.osv):
457     _inherit = "resource.calendar.leaves"
458     _description = "Leave Detail"
459     _columns = {
460         'holiday_id': fields.many2one("hr.holidays", "Leave Request"),
461     }
462
463 resource_calendar_leaves()
464
465
466 class hr_employee(osv.osv):
467     _inherit="hr.employee"
468
469     def create(self, cr, uid, vals, context=None):
470         # don't pass the value of remaining leave if it's 0 at the creation time, otherwise it will trigger the inverse
471         # function _set_remaining_days and the system may not be configured for. Note that we don't have this problem on
472         # the write because the clients only send the fields that have been modified.
473         if 'remaining_leaves' in vals and not vals['remaining_leaves']:
474             del(vals['remaining_leaves'])
475         return super(hr_employee, self).create(cr, uid, vals, context=context)
476
477     def _set_remaining_days(self, cr, uid, empl_id, name, value, arg, context=None):
478         employee = self.browse(cr, uid, empl_id, context=context)
479         diff = value - employee.remaining_leaves
480         type_obj = self.pool.get('hr.holidays.status')
481         holiday_obj = self.pool.get('hr.holidays')
482         # Find for holidays status
483         status_ids = type_obj.search(cr, uid, [('limit', '=', False)], context=context)
484         if len(status_ids) != 1 :
485             raise osv.except_osv(_('Warning!'),_("The feature behind the field 'Remaining Legal Leaves' can only be used when there is only one leave type with the option 'Allow to Override Limit' unchecked. (%s Found). Otherwise, the update is ambiguous as we cannot decide on which leave type the update has to be done. \nYou may prefer to use the classic menus 'Leave Requests' and 'Allocation Requests' located in 'Human Resources \ Leaves' to manage the leave days of the employees if the configuration does not allow to use this field.") % (len(status_ids)))
486         status_id = status_ids and status_ids[0] or False
487         if not status_id:
488             return False
489         if diff > 0:
490             leave_id = holiday_obj.create(cr, uid, {'name': _('Allocation for %s') % employee.name, 'employee_id': employee.id, 'holiday_status_id': status_id, 'type': 'add', 'holiday_type': 'employee', 'number_of_days_temp': diff}, context=context)
491         elif diff < 0:
492             leave_id = holiday_obj.create(cr, uid, {'name': _('Leave Request for %s') % employee.name, 'employee_id': employee.id, 'holiday_status_id': status_id, 'type': 'remove', 'holiday_type': 'employee', 'number_of_days_temp': abs(diff)}, context=context)
493         else:
494             return False
495         wf_service = netsvc.LocalService("workflow")
496         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'confirm', cr)
497         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'validate', cr)
498         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'second_validate', cr)
499         return True
500
501     def _get_remaining_days(self, cr, uid, ids, name, args, context=None):
502         cr.execute("""SELECT
503                 sum(h.number_of_days) as days,
504                 h.employee_id
505             from
506                 hr_holidays h
507                 join hr_holidays_status s on (s.id=h.holiday_status_id)
508             where
509                 h.state='validate' and
510                 s.limit=False and
511                 h.employee_id in (%s)
512             group by h.employee_id"""% (','.join(map(str,ids)),) )
513         res = cr.dictfetchall()
514         remaining = {}
515         for r in res:
516             remaining[r['employee_id']] = r['days']
517         for employee_id in ids:
518             if not remaining.get(employee_id):
519                 remaining[employee_id] = 0.0
520         return remaining
521
522     def _get_leave_status(self, cr, uid, ids, name, args, context=None):
523         holidays_obj = self.pool.get('hr.holidays')
524         holidays_id = holidays_obj.search(cr, uid,
525            [('employee_id', 'in', ids), ('date_from','<=',time.strftime('%Y-%m-%d %H:%M:%S')),
526            ('date_to','>=',time.strftime('%Y-%m-%d 23:59:59')),('type','=','remove'),('state','not in',('cancel','refuse'))],
527            context=context)
528         result = {}
529         for id in ids:
530             result[id] = {
531                 'current_leave_state': False,
532                 'current_leave_id': False,
533                 'leave_date_from':False,
534                 'leave_date_to':False,
535             }
536         for holiday in self.pool.get('hr.holidays').browse(cr, uid, holidays_id, context=context):
537             result[holiday.employee_id.id]['leave_date_from'] = holiday.date_from
538             result[holiday.employee_id.id]['leave_date_to'] = holiday.date_to
539             result[holiday.employee_id.id]['current_leave_state'] = holiday.state
540             result[holiday.employee_id.id]['current_leave_id'] = holiday.holiday_status_id.id
541         return result
542
543     _columns = {
544         'remaining_leaves': fields.function(_get_remaining_days, string='Remaining Legal Leaves', fnct_inv=_set_remaining_days, type="float", help='Total number of legal leaves allocated to this employee, change this value to create allocation/leave requests.'),
545         'current_leave_state': fields.function(_get_leave_status, multi="leave_status", string="Current Leave Status", type="selection",
546             selection=[('draft', 'New'), ('confirm', 'Waiting Approval'), ('refuse', 'Refused'),
547             ('validate1', 'Waiting Second Approval'), ('validate', 'Approved'), ('cancel', 'Cancelled')]),
548         'current_leave_id': fields.function(_get_leave_status, multi="leave_status", string="Current Leave Type",type='many2one', relation='hr.holidays.status'),
549         'leave_date_from': fields.function(_get_leave_status, multi='leave_status', type='date', string='From Date'),
550         'leave_date_to': fields.function(_get_leave_status, multi='leave_status', type='date', string='To Date'),
551     }
552
553 hr_employee()
554
555 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: