[IMP] hr_holidays: deleted automatic subscription creation, now delegated to mail...
[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 netsvc
29 from osv import fields, osv
30 from tools.translate import _
31
32
33 class hr_holidays_status(osv.osv):
34     _name = "hr.holidays.status"
35     _description = "Leave Type"
36
37     def get_days(self, cr, uid, ids, employee_id, return_false, context=None):
38         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""",
39             [employee_id, tuple(ids)])
40         result = sorted(cr.dictfetchall(), key=lambda x: x['holiday_status_id'])
41         grouped_lines = dict((k, [v for v in itr]) for k, itr in groupby(result, itemgetter('holiday_status_id')))
42         res = {}
43         for record in self.browse(cr, uid, ids, context=context):
44             res[record.id] = {}
45             max_leaves = leaves_taken = 0
46             if not return_false:
47                 if record.id in grouped_lines:
48                     leaves_taken = -sum([item['number_of_days'] for item in grouped_lines[record.id] if item['type'] == 'remove'])
49                     max_leaves = sum([item['number_of_days'] for item in grouped_lines[record.id] if item['type'] == 'add'])
50             res[record.id]['max_leaves'] = max_leaves
51             res[record.id]['leaves_taken'] = leaves_taken
52             res[record.id]['remaining_leaves'] = max_leaves - leaves_taken
53         return res
54
55     def _user_left_days(self, cr, uid, ids, name, args, context=None):
56         return_false = False
57         employee_id = False
58         res = {}
59         if context and context.has_key('employee_id'):
60             if not context['employee_id']:
61                 return_false = True
62             employee_id = context['employee_id']
63         else:
64             employee_ids = self.pool.get('hr.employee').search(cr, uid, [('user_id','=',uid)], context=context)
65             if employee_ids:
66                 employee_id = employee_ids[0]
67             else:
68                 return_false = True
69         if employee_id:
70             res = self.get_days(cr, uid, ids, employee_id, return_false, context=context)
71         else:
72             res = dict.fromkeys(ids, {'leaves_taken': 0, 'remaining_leaves': 0, 'max_leaves': 0})
73         return res
74
75     _columns = {
76         'name': fields.char('Leave Type', size=64, required=True, translate=True),
77         'categ_id': fields.many2one('crm.case.categ', 'Meeting', domain="[('object_id.model', '=', 'crm.meeting')]", help='If you set a meeting type, OpenERP will create a meeting in the calendar once a leave is validated.'),
78         '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 Departement'),
79         'limit': fields.boolean('Allow to Override Limit', help='If you tick this checkbox, the system will allow, for this section, the employees to take more leaves than the available ones.'),
80         '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."),
81         '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'),
82         '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'),
83         'remaining_leaves': fields.function(_user_left_days, string='Remaining Leaves', help='Maximum Leaves Allowed - Leaves Already Taken', multi='user_left_days'),
84         'double_validation': fields.boolean('Apply Double Validation', help="If its True then its Allocation/Request have to be validated by second validator")
85     }
86     _defaults = {
87         'color_name': 'red',
88         'active': True,
89     }
90 hr_holidays_status()
91
92 class hr_holidays(osv.osv):
93     _name = "hr.holidays"
94     _description = "Leave"
95     _order = "type desc, date_from asc"
96     _inherit = ['mail.thread']
97
98     def _employee_get(self, cr, uid, context=None):
99         ids = self.pool.get('hr.employee').search(cr, uid, [('user_id', '=', uid)], context=context)
100         if ids:
101             return ids[0]
102         return False
103
104     def _compute_number_of_days(self, cr, uid, ids, name, args, context=None):
105         result = {}
106         for hol in self.browse(cr, uid, ids, context=context):
107             if hol.type=='remove':
108                 result[hol.id] = -hol.number_of_days_temp
109             else:
110                 result[hol.id] = hol.number_of_days_temp
111         return result
112
113     _columns = {
114         'name': fields.char('Description', required=True, size=64),
115         'state': fields.selection([('draft', 'New'), ('confirm', 'Waiting Approval'), ('refuse', 'Refused'),
116             ('validate1', 'Waiting Second Approval'), ('validate', 'Approved'), ('cancel', 'Cancelled')],
117             'State', readonly=True, help='The state is set to \'Draft\', when a holiday request is created.\
118             \nThe state is \'Waiting Approval\', when holiday request is confirmed by user.\
119             \nThe state is \'Refused\', when holiday request is refused by manager.\
120             \nThe state is \'Approved\', when holiday request is approved by manager.'),
121         'user_id':fields.related('employee_id', 'user_id', type='many2one', relation='res.users', string='User', store=True),
122         'date_from': fields.datetime('Start Date', readonly=True, states={'draft':[('readonly',False)]}, select=True),
123         'date_to': fields.datetime('End Date', readonly=True, states={'draft':[('readonly',False)]}),
124         'holiday_status_id': fields.many2one("hr.holidays.status", "Leave Type", required=True,readonly=True, states={'draft':[('readonly',False)]}),
125         'employee_id': fields.many2one('hr.employee', "Employee", select=True, invisible=False, readonly=True, states={'draft':[('readonly',False)]}, help='Leave Manager can let this field empty if this leave request/allocation is for every employee'),
126         #'manager_id': fields.many2one('hr.employee', 'Leave Manager', invisible=False, readonly=True, help='This area is automatically filled by the user who validate the leave'),
127         #'notes': fields.text('Notes',readonly=True, states={'draft':[('readonly',False)]}),
128         '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'),
129         'notes': fields.text('Reasons',readonly=True, states={'draft':[('readonly',False)]}),
130         'number_of_days_temp': fields.float('Number of Days', readonly=True, states={'draft':[('readonly',False)]}),
131         'number_of_days': fields.function(_compute_number_of_days, string='Number of Days', store=True),
132         'case_id': fields.many2one('crm.meeting', 'Meeting'),
133         'type': fields.selection([('remove','Leave Request'),('add','Allocation Request')], 'Request Type', required=True, readonly=True, states={'draft':[('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),
134         'parent_id': fields.many2one('hr.holidays', 'Parent'),
135         'linked_request_ids': fields.one2many('hr.holidays', 'parent_id', 'Linked Requests',),
136         'department_id':fields.related('employee_id', 'department_id', string='Department', type='many2one', relation='hr.department', readonly=True, store=True),
137         'category_id': fields.many2one('hr.employee.category', "Category", help='Category of Employee'),
138         'holiday_type': fields.selection([('employee','By Employee'),('category','By Employee Category')], 'Allocation Type', help='By Employee: Allocation/Request for individual Employee, By Employee Category: Allocation/Request for group of employees in category', required=True),
139         '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)'),
140         'double_validation': fields.related('holiday_status_id', 'double_validation', type='boolean', relation='hr.holidays.status', string='Apply Double Validation'),
141     }
142     _defaults = {
143         'employee_id': _employee_get,
144         'state': 'draft',
145         'type': 'remove',
146         'user_id': lambda obj, cr, uid, context: uid,
147         'holiday_type': 'employee'
148     }
149     _sql_constraints = [
150         ('type_value', "CHECK( (holiday_type='employee' AND employee_id IS NOT NULL) or (holiday_type='category' AND category_id IS NOT NULL))", "You have to select an employee or a category"),
151         ('date_check2', "CHECK ( (type='add') OR (date_from <= date_to))", "The start date must be before the end date !"),
152         ('date_check', "CHECK ( number_of_days_temp >= 0 )", "The number of days must be greater than 0 !"),
153     ]
154     
155     def create(self, cr, uid, vals, context=None):
156         obj_id = super(hr_holidays, self).create(cr, uid, vals, context=context)
157         self.create_notificate(cr, uid, [obj_id], context=context)
158         return obj_id
159     
160     def _create_resource_leave(self, cr, uid, leaves, context=None):
161         '''This method will create entry in resource calendar leave object at the time of holidays validated '''
162         obj_res_leave = self.pool.get('resource.calendar.leaves')
163         for leave in leaves:
164             vals = {
165                 'name': leave.name,
166                 'date_from': leave.date_from,
167                 'holiday_id': leave.id,
168                 'date_to': leave.date_to,
169                 'resource_id': leave.employee_id.resource_id.id,
170                 'calendar_id': leave.employee_id.resource_id.calendar_id.id
171             }
172             obj_res_leave.create(cr, uid, vals, context=context)
173         return True
174
175     def _remove_resource_leave(self, cr, uid, ids, context=None):
176         '''This method will create entry in resource calendar leave object at the time of holidays cancel/removed'''
177         obj_res_leave = self.pool.get('resource.calendar.leaves')
178         leave_ids = obj_res_leave.search(cr, uid, [('holiday_id', 'in', ids)], context=context)
179         return obj_res_leave.unlink(cr, uid, leave_ids, context=context)
180
181     def onchange_type(self, cr, uid, ids, holiday_type):
182         result = {'value': {'employee_id': False}}
183         if holiday_type == 'employee':
184             ids_employee = self.pool.get('hr.employee').search(cr, uid, [('user_id','=', uid)])
185             if ids_employee:
186                 result['value'] = {
187                     'employee_id': ids_employee[0]
188                 }
189         return result
190
191     # TODO: can be improved using resource calendar method
192     def _get_number_of_days(self, date_from, date_to):
193         """Returns a float equals to the timedelta between two dates given as string."""
194
195         DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S"
196         from_dt = datetime.datetime.strptime(date_from, DATETIME_FORMAT)
197         to_dt = datetime.datetime.strptime(date_to, DATETIME_FORMAT)
198         timedelta = to_dt - from_dt
199         diff_day = timedelta.days + float(timedelta.seconds) / 86400
200         return diff_day
201
202     def unlink(self, cr, uid, ids, context=None):
203         for rec in self.browse(cr, uid, ids, context=context):
204             if rec.state<>'draft':
205                 raise osv.except_osv(_('Warning!'),_('You cannot delete a leave which is not in draft state !'))
206         return super(hr_holidays, self).unlink(cr, uid, ids, context)
207
208     def onchange_date_from(self, cr, uid, ids, date_to, date_from):
209         result = {}
210         if date_to and date_from:
211             diff_day = self._get_number_of_days(date_from, date_to)
212             result['value'] = {
213                 'number_of_days_temp': round(diff_day)+1
214             }
215             return result
216         result['value'] = {
217             'number_of_days_temp': 0,
218         }
219         return result
220
221     def onchange_sec_id(self, cr, uid, ids, status, context=None):
222         warning = {}
223         double_validation = False
224         obj_holiday_status = self.pool.get('hr.holidays.status')
225         if status:
226             holiday_status = obj_holiday_status.browse(cr, uid, status, context=context)
227             double_validation = holiday_status.double_validation
228             if holiday_status.categ_id and holiday_status.categ_id.section_id and not holiday_status.categ_id.section_id.allow_unlink:
229                 warning = {
230                     'title': "Warning for ",
231                     'message': "You won\'t be able to cancel this leave request because the CRM Sales Team of the leave type disallows."
232                 }
233         return {'warning': warning, 'value': {'double_validation': double_validation}}
234
235     def set_to_draft(self, cr, uid, ids, context=None):
236         self.write(cr, uid, ids, {
237             'state': 'draft',
238             'manager_id': False,
239             'manager_id2': False,
240         })
241         wf_service = netsvc.LocalService("workflow")
242         for id in ids:
243             wf_service.trg_delete(uid, 'hr.holidays', id, cr)
244             wf_service.trg_create(uid, 'hr.holidays', id, cr)
245         to_unlink = []
246         for record in self.browse(cr, uid, ids, context=context):
247             for record2 in record.linked_request_ids:
248                 self.set_to_draft(cr, uid, [record2.id], context=context)
249                 to_unlink.append(record2.id)
250         if to_unlink:
251             self.unlink(cr, uid, to_unlink, context=context)
252         return True
253
254     def holidays_validate(self, cr, uid, ids, context=None):
255         self.check_holidays(cr, uid, ids, context=context)
256         obj_emp = self.pool.get('hr.employee')
257         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
258         manager = ids2 and ids2[0] or False
259         self.holidays_validate_notificate(cr, uid, ids, context=context)
260         return self.write(cr, uid, ids, {'state':'validate1', 'manager_id': manager})
261     
262     def holidays_validate2(self, cr, uid, ids, context=None):
263         self.check_holidays(cr, uid, ids, context=context)
264         obj_emp = self.pool.get('hr.employee')
265         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
266         manager = ids2 and ids2[0] or False
267         self.write(cr, uid, ids, {'state':'validate'})
268         data_holiday = self.browse(cr, uid, ids)
269         holiday_ids = []
270         for record in data_holiday:
271             if record.holiday_status_id.double_validation:
272                 holiday_ids.append(record.id)
273             if record.holiday_type == 'employee' and record.type == 'remove':
274                 meeting_obj = self.pool.get('crm.meeting')
275                 vals = {
276                     'name': record.name,
277                     'categ_id': record.holiday_status_id.categ_id.id,
278                     'duration': record.number_of_days_temp * 8,
279                     'description': record.notes,
280                     'user_id': record.user_id.id,
281                     'date': record.date_from,
282                     'end_date': record.date_to,
283                     'date_deadline': record.date_to,
284                 }
285                 case_id = meeting_obj.create(cr, uid, vals)
286                 self._create_resource_leave(cr, uid, [record], context=context)
287                 self.write(cr, uid, ids, {'case_id': case_id})
288             elif record.holiday_type == 'category':
289                 emp_ids = obj_emp.search(cr, uid, [('category_ids', 'child_of', [record.category_id.id])])
290                 leave_ids = []
291                 for emp in obj_emp.browse(cr, uid, emp_ids):
292                     vals = {
293                         'name': record.name,
294                         'type': record.type,
295                         'holiday_type': 'employee',
296                         'holiday_status_id': record.holiday_status_id.id,
297                         'date_from': record.date_from,
298                         'date_to': record.date_to,
299                         'notes': record.notes,
300                         'number_of_days_temp': record.number_of_days_temp,
301                         'parent_id': record.id,
302                         'employee_id': emp.id
303                     }
304                     leave_ids.append(self.create(cr, uid, vals, context=None))
305                 wf_service = netsvc.LocalService("workflow")
306                 for leave_id in leave_ids:
307                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'confirm', cr)
308                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'validate', cr)
309                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'second_validate', cr)
310         if holiday_ids:
311             self.holidays_valid2_notificate(self, cr, uid, [holiday_ids], context=context)
312             self.write(cr, uid, holiday_ids, {'manager_id2': manager})
313         return True
314
315     def holidays_confirm(self, cr, uid, ids, context=None):
316         self.check_holidays(cr, uid, ids, context=context)
317         self.holidays_confirm_notificate(cr, uid, ids, context=context)
318         return self.write(cr, uid, ids, {'state':'confirm'})
319     
320     def holidays_refuse(self, cr, uid, ids, approval, context=None):
321         obj_emp = self.pool.get('hr.employee')
322         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
323         manager = ids2 and ids2[0] or False
324         if approval == 'first_approval':
325             self.write(cr, uid, ids, {'state': 'refuse', 'manager_id': manager})
326         else:
327             self.write(cr, uid, ids, {'state': 'refuse', 'manager_id2': manager})
328         self.holidays_refuse_notificate(cr, uid, ids, approval, context=context)
329         self.holidays_cancel(cr, uid, ids, context=context)
330         return True
331
332     def holidays_cancel(self, cr, uid, ids, context=None):
333         obj_crm_meeting = self.pool.get('crm.meeting')
334         for record in self.browse(cr, uid, ids):
335             # Delete the meeting
336             if record.case_id:
337                 obj_crm_meeting.unlink(cr, uid, [record.case_id.id])
338
339             # If a category that created several holidays, cancel all related
340             wf_service = netsvc.LocalService("workflow")
341             for request in record.linked_request_ids or []:
342                 wf_service.trg_validate(uid, 'hr.holidays', request.id, 'cancel', cr)
343
344         self._remove_resource_leave(cr, uid, ids, context=context)
345         return True
346
347     def check_holidays(self, cr, uid, ids, context=None):
348         holi_status_obj = self.pool.get('hr.holidays.status')
349         for record in self.browse(cr, uid, ids):
350             if record.holiday_type == 'employee' and record.type == 'remove':
351                 if record.employee_id and not record.holiday_status_id.limit:
352                     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']
353                     if leaves_rest < record.number_of_days_temp:
354                         raise osv.except_osv(_('Warning!'),_('You cannot validate leaves for employee %s: too few remaining days (%s).') % (record.employee_id.name, leaves_rest))
355         return True
356     
357     # -----------------------------
358     # OpenChatter and notifications
359     # -----------------------------
360     
361     def message_get_subscribers(self, cr, uid, ids, context=None):
362         sub_ids = self._message_get_subscribers_ids(cr, uid, ids, context=context);
363         # add the employee and its manager if specified to the subscribed users
364         for obj in self.browse(cr, uid, ids, context=context):
365             if obj.employee_id.parent_id:
366                 sub_ids.append(obj.employee_id.parent_id.user_id.id)
367         return self.pool.get('res.users').read(cr, uid, sub_ids, context=context)
368         
369     def create_notificate(self, cr, uid, ids, context=None):
370         for obj in self.browse(cr, uid, ids, context=context):
371             self.message_append_note(cr, uid, ids, _('System notification'),
372                         _("The %s request '%s' has been created and is waiting confirmation")
373                         % ('leave' if obj.type == 'remove' else 'allocation', obj.name), type='notification', context=context)
374         return True
375     
376     def holidays_confirm_notificate(self, cr, uid, ids, context=None):
377         for obj in self.browse(cr, uid, ids):
378             self.message_append_note(cr, uid, [obj.id], _('System notification'), 
379                     _("The %s request '%s' has been confirmed and is waiting for validation by the manager.")
380                     % ('leave' if obj.type == 'remove' else 'allocation', obj.name,), type='notification',
381                     need_action_user_id = obj.employee_id.parent_id.user_id.id if obj.employee_id.parent_id else False)
382     
383     def holidays_validate_notificate(self, cr, uid, ids, context=None):
384         for obj in self.browse(cr, uid, ids):
385             self.message_mark_done(cr, uid, [obj.id], context=context)
386             if obj.holiday_status_id.double_validation:
387                 self.message_append_note(cr, uid, [obj.id], _('System notification'),
388                     _("The %s request '%s' has been validated. A second validation is necessary and is now pending.")
389                     % ('leave' if obj.type == 'remove' else 'allocation', obj.name), type='notification', context=context)
390             else:
391                 self.message_append_note(cr, uid, [obj.id], _('System notification'),
392                     _("The %s request '%s' has been validated. The validation process is now over.")
393                     % ('leave' if obj.type == 'remove' else 'allocation', obj.name), type='notification', context=context)
394     
395     def holidays_valid2_notificate(self, cr, uid, ids, context=None):
396         for obj in self.browse(cr, uid, ids):
397             self.message_append_note(cr, uid, [obj.id], _('System notification'),
398                     _("The %s request '%s' has been double validated. The validation process is now over.")
399                     % ('leave' if obj.type == 'remove' else 'allocation', obj.name,), type='notification', context=context)
400     
401     def holidays_refuse_notificate(self, cr, uid, ids, approval, context=None):
402         for obj in self.browse(cr, uid, ids):
403             self.message_append_note(cr, uid, [obj.id], _('System notification'),
404                     _("The %s request '%s' has been refused. The validation process is now over.")
405                     % ('leave' if obj.type == 'remove' else 'allocation', obj.name,), type='notification', context=context)
406     
407 hr_holidays()
408
409 class resource_calendar_leaves(osv.osv):
410     _inherit = "resource.calendar.leaves"
411     _description = "Leave Detail"
412     _columns = {
413         'holiday_id': fields.many2one("hr.holidays", "Holiday"),
414     }
415
416 resource_calendar_leaves()
417
418
419 class hr_employee(osv.osv):
420     _inherit="hr.employee"
421
422     def create(self, cr, uid, vals, context=None):
423         # don't pass the value of remaining leave if it's 0 at the creation time, otherwise it will trigger the inverse
424         # function _set_remaining_days and the system may not be configured for. Note that we don't have this problem on
425         # the write because the clients only send the fields that have been modified.
426         if 'remaining_leaves' in vals and not vals['remaining_leaves']:
427             del(vals['remaining_leaves'])
428         return super(hr_employee, self).create(cr, uid, vals, context=context)
429
430     def _set_remaining_days(self, cr, uid, empl_id, name, value, arg, context=None):
431         employee = self.browse(cr, uid, empl_id, context=context)
432         diff = value - employee.remaining_leaves
433         type_obj = self.pool.get('hr.holidays.status')
434         holiday_obj = self.pool.get('hr.holidays')
435         # Find for holidays status
436         status_ids = type_obj.search(cr, uid, [('limit', '=', False)], context=context)
437         if len(status_ids) != 1 :
438             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)))
439         status_id = status_ids and status_ids[0] or False
440         if not status_id:
441             return False
442         if diff > 0:
443             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)
444         elif diff < 0:
445             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)
446         else:
447             return False
448         wf_service = netsvc.LocalService("workflow")
449         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'confirm', cr)
450         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'validate', cr)
451         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'second_validate', cr)
452         return True
453
454     def _get_remaining_days(self, cr, uid, ids, name, args, context=None):
455         cr.execute("""SELECT
456                 sum(h.number_of_days) as days,
457                 h.employee_id 
458             from
459                 hr_holidays h
460                 join hr_holidays_status s on (s.id=h.holiday_status_id) 
461             where
462                 h.state='validate' and
463                 s.limit=False and
464                 h.employee_id in (%s)
465             group by h.employee_id"""% (','.join(map(str,ids)),) )
466         res = cr.dictfetchall()
467         remaining = {}
468         for r in res:
469             remaining[r['employee_id']] = r['days']
470         for employee_id in ids:
471             if not remaining.get(employee_id):
472                 remaining[employee_id] = 0.0
473         return remaining
474
475     def _get_leave_status(self, cr, uid, ids, name, args, context=None):
476         holidays_id = self.pool.get('hr.holidays').search(cr, uid, 
477            [('employee_id', 'in', ids), ('date_from','<=',time.strftime('%Y-%m-%d %H:%M:%S')), 
478             ('date_to','>=',time.strftime('%Y-%m-%d %H:%M:%S')),('type','=','remove'),('state','not in',('cancel','refuse'))],
479            context=context)
480         result = {}
481         for id in ids:
482             result[id] = {
483                 'current_leave_state': False,
484                 'current_leave_id': False,
485             }
486         for holiday in self.pool.get('hr.holidays').browse(cr, uid, holidays_id, context=context):
487             result[holiday.employee_id.id]['current_leave_state'] = holiday.state
488             result[holiday.employee_id.id]['current_leave_id'] = holiday.holiday_status_id.id
489         return result
490
491     _columns = {
492         '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.'),
493         'current_leave_state': fields.function(_get_leave_status, multi="leave_status", string="Current Leave Status", type="selection",
494             selection=[('draft', 'New'), ('confirm', 'Waiting Approval'), ('refuse', 'Refused'),
495             ('validate1', 'Waiting Second Approval'), ('validate', 'Approved'), ('cancel', 'Cancelled')]),
496         'current_leave_id': fields.function(_get_leave_status, multi="leave_status", string="Current Leave Type",type='many2one', relation='hr.holidays.status'),
497         'last_login': fields.related('user_id', 'date', type='datetime', string='Latest Connection', readonly=1)
498     }
499
500 hr_employee()
501
502 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: