[IMP] hr_holidays: removed 'document created' automatic log, as the request is automa...
[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
25 import time
26 from itertools import groupby
27 from operator import itemgetter
28
29 import math
30 from openerp import netsvc
31 from openerp import tools
32 from openerp.osv import fields, osv
33 from openerp.tools.translate import _
34
35
36 class hr_holidays_status(osv.osv):
37     _name = "hr.holidays.status"
38     _description = "Leave Type"
39
40     def get_days(self, cr, uid, ids, employee_id, return_false, context=None):
41         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""",
42             [employee_id, tuple(ids)])
43         result = sorted(cr.dictfetchall(), key=lambda x: x['holiday_status_id'])
44         grouped_lines = dict((k, [v for v in itr]) for k, itr in groupby(result, itemgetter('holiday_status_id')))
45         res = {}
46         for record in self.browse(cr, uid, ids, context=context):
47             res[record.id] = {}
48             max_leaves = leaves_taken = 0
49             if not return_false:
50                 if record.id in grouped_lines:
51                     leaves_taken = -sum([item['number_of_days'] for item in grouped_lines[record.id] if item['type'] == 'remove'])
52                     max_leaves = sum([item['number_of_days'] for item in grouped_lines[record.id] if item['type'] == 'add'])
53             res[record.id]['max_leaves'] = max_leaves
54             res[record.id]['leaves_taken'] = leaves_taken
55             res[record.id]['remaining_leaves'] = max_leaves - leaves_taken
56         return res
57
58     def _user_left_days(self, cr, uid, ids, name, args, context=None):
59         return_false = False
60         employee_id = False
61         res = {}
62         if context and context.has_key('employee_id'):
63             if not context['employee_id']:
64                 return_false = True
65             employee_id = context['employee_id']
66         else:
67             employee_ids = self.pool.get('hr.employee').search(cr, uid, [('user_id','=',uid)], context=context)
68             if employee_ids:
69                 employee_id = employee_ids[0]
70             else:
71                 return_false = True
72         if employee_id:
73             res = self.get_days(cr, uid, ids, employee_id, return_false, context=context)
74         else:
75             res = dict.fromkeys(ids, {'leaves_taken': 0, 'remaining_leaves': 0, 'max_leaves': 0})
76         return res
77
78     _columns = {
79         'name': fields.char('Leave Type', size=64, required=True, translate=True),
80         'categ_id': fields.many2one('crm.meeting.type', 'Meeting Type',
81             help='Once a leave is validated, OpenERP will create a corresponding meeting of this type in the calendar.'),
82         '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.'),
83         'limit': fields.boolean('Allow to Override Limit', help='If you select this check box, the system allows the employees to take more leaves than the available ones for this type and take them into account for the "Remaining Legal Leaves" defined on the employee form.'),
84         '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."),
85         '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'),
86         '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'),
87         'remaining_leaves': fields.function(_user_left_days, string='Remaining Leaves', help='Maximum Leaves Allowed - Leaves Already Taken', multi='user_left_days'),
88         'double_validation': fields.boolean('Apply Double Validation', help="When selected, the Allocation/Leave Requests for this type require a second validation to be approved."),
89     }
90     _defaults = {
91         'color_name': 'red',
92         'active': True,
93     }
94
95     def name_get(self, cr, uid, ids, context=None):
96         if not ids:
97             return []
98         res = []
99         for record in self.browse(cr, uid, ids, context=context):
100             name = record.name
101             if not record.limit:
102                 name = name + ('  (%d/%d)' % (record.leaves_taken or 0.0, record.max_leaves or 0.0))
103             res.append((record.id, name))
104         return res
105
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     _track = {
113         'state': {
114             'hr_holidays.mt_holidays_approved': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'validate',
115             'hr_holidays.mt_holidays_refused': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'refuse',
116             'hr_holidays.mt_holidays_confirmed': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'confirm',
117         },
118     }
119
120     def _employee_get(self, cr, uid, context=None):
121         ids = self.pool.get('hr.employee').search(cr, uid, [('user_id', '=', uid)], context=context)
122         if ids:
123             return ids[0]
124         return False
125
126     def _compute_number_of_days(self, cr, uid, ids, name, args, context=None):
127         result = {}
128         for hol in self.browse(cr, uid, ids, context=context):
129             if hol.type=='remove':
130                 result[hol.id] = -hol.number_of_days_temp
131             else:
132                 result[hol.id] = hol.number_of_days_temp
133         return result
134
135     def _check_date(self, cr, uid, ids):
136         for holiday in self.browse(cr, uid, ids):
137             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)])
138             if holiday_ids:
139                 return False
140         return True
141
142     _columns = {
143         'name': fields.char('Description', size=64),
144         'state': fields.selection([('draft', 'To Submit'), ('cancel', 'Cancelled'),('confirm', 'To Approve'), ('refuse', 'Refused'), ('validate1', 'Second Approval'), ('validate', 'Approved')],
145             'Status', readonly=True, track_visibility='onchange',
146             help='The status is set to \'To Submit\', when a holiday request is created.\
147             \nThe status is \'To Approve\', when holiday request is confirmed by user.\
148             \nThe status is \'Refused\', when holiday request is refused by manager.\
149             \nThe status is \'Approved\', when holiday request is approved by manager.'),
150         'user_id':fields.related('employee_id', 'user_id', type='many2one', relation='res.users', string='User', store=True),
151         'date_from': fields.datetime('Start Date', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}, select=True),
152         'date_to': fields.datetime('End Date', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
153         'holiday_status_id': fields.many2one("hr.holidays.status", "Leave Type", required=True,readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
154         'employee_id': fields.many2one('hr.employee', "Employee", select=True, invisible=False, readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
155         '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'),
156         'notes': fields.text('Reasons',readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
157         'number_of_days_temp': fields.float('Allocation', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
158         'number_of_days': fields.function(_compute_number_of_days, string='Number of Days', store=True),
159         'meeting_id': fields.many2one('crm.meeting', 'Meeting'),
160         '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),
161         'parent_id': fields.many2one('hr.holidays', 'Parent'),
162         'linked_request_ids': fields.one2many('hr.holidays', 'parent_id', 'Linked Requests',),
163         'department_id':fields.related('employee_id', 'department_id', string='Department', type='many2one', relation='hr.department', readonly=True, store=True),
164         'category_id': fields.many2one('hr.employee.category', "Employee Tag", help='Category of Employee', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}),
165         'holiday_type': fields.selection([('employee','By Employee'),('category','By Employee Tag')], 'Allocation Mode', readonly=True, states={'draft':[('readonly',False)], 'confirm':[('readonly',False)]}, help='By Employee: Allocation/Request for individual Employee, By Employee Tag: Allocation/Request for group of employees in category', required=True),
166         '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)'),
167         'double_validation': fields.related('holiday_status_id', 'double_validation', type='boolean', relation='hr.holidays.status', string='Apply Double Validation'),
168     }
169     _defaults = {
170         'employee_id': _employee_get,
171         'state': 'draft',
172         'type': 'remove',
173         'user_id': lambda obj, cr, uid, context: uid,
174         'holiday_type': 'employee'
175     }
176     _constraints = [
177         (_check_date, 'You can not have 2 leaves that overlaps on same day!', ['date_from','date_to']),
178     ] 
179     
180     _sql_constraints = [
181         ('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."),
182         ('date_check2', "CHECK ( (type='add') OR (date_from <= date_to))", "The start date must be anterior to the end date."),
183         ('date_check', "CHECK ( number_of_days_temp >= 0 )", "The number of days must be greater than 0."),
184     ]
185
186     def _create_resource_leave(self, cr, uid, leaves, context=None):
187         '''This method will create entry in resource calendar leave object at the time of holidays validated '''
188         obj_res_leave = self.pool.get('resource.calendar.leaves')
189         for leave in leaves:
190             vals = {
191                 'name': leave.name,
192                 'date_from': leave.date_from,
193                 'holiday_id': leave.id,
194                 'date_to': leave.date_to,
195                 'resource_id': leave.employee_id.resource_id.id,
196                 'calendar_id': leave.employee_id.resource_id.calendar_id.id
197             }
198             obj_res_leave.create(cr, uid, vals, context=context)
199         return True
200
201     def _remove_resource_leave(self, cr, uid, ids, context=None):
202         '''This method will create entry in resource calendar leave object at the time of holidays cancel/removed'''
203         obj_res_leave = self.pool.get('resource.calendar.leaves')
204         leave_ids = obj_res_leave.search(cr, uid, [('holiday_id', 'in', ids)], context=context)
205         return obj_res_leave.unlink(cr, uid, leave_ids, context=context)
206
207     def onchange_type(self, cr, uid, ids, holiday_type):
208         result = {'value': {'employee_id': False}}
209         if holiday_type == 'employee':
210             ids_employee = self.pool.get('hr.employee').search(cr, uid, [('user_id','=', uid)])
211             if ids_employee:
212                 result['value'] = {
213                     'employee_id': ids_employee[0]
214                 }
215         return result
216
217     def onchange_employee(self, cr, uid, ids, employee_id):
218         result = {'value': {'department_id': False}}
219         if employee_id:
220             employee = self.pool.get('hr.employee').browse(cr, uid, employee_id)
221             result['value'] = {'department_id': employee.department_id.id}
222         return result
223
224     # TODO: can be improved using resource calendar method
225     def _get_number_of_days(self, date_from, date_to):
226         """Returns a float equals to the timedelta between two dates given as string."""
227
228         DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S"
229         from_dt = datetime.datetime.strptime(date_from, DATETIME_FORMAT)
230         to_dt = datetime.datetime.strptime(date_to, DATETIME_FORMAT)
231         timedelta = to_dt - from_dt
232         diff_day = timedelta.days + float(timedelta.seconds) / 86400
233         return diff_day
234
235     def unlink(self, cr, uid, ids, context=None):
236         for rec in self.browse(cr, uid, ids, context=context):
237             if rec.state not in ['draft', 'cancel', 'confirm']:
238                 raise osv.except_osv(_('Warning!'),_('You cannot delete a leave which is in %s state.')%(rec.state))
239         return super(hr_holidays, self).unlink(cr, uid, ids, context)
240
241     def onchange_date_from(self, cr, uid, ids, date_to, date_from):
242         """
243         If there are no date set for date_to, automatically set one 8 hours later than
244         the date_from.
245         Also update the number_of_days.
246         """
247         # date_to has to be greater than date_from
248         if (date_from and date_to) and (date_from > date_to):
249             raise osv.except_osv(_('Warning!'),_('The start date must be anterior to the end date.'))
250
251         result = {'value': {}}
252
253         # No date_to set so far: automatically compute one 8 hours later
254         if date_from and not date_to:
255             date_to_with_delta = datetime.datetime.strptime(date_from, tools.DEFAULT_SERVER_DATETIME_FORMAT) + datetime.timedelta(hours=8)
256             result['value']['date_to'] = str(date_to_with_delta)
257
258         # Compute and update the number of days
259         if (date_to and date_from) and (date_from <= date_to):
260             diff_day = self._get_number_of_days(date_from, date_to)
261             result['value']['number_of_days_temp'] = round(math.floor(diff_day))+1
262         else:
263             result['value']['number_of_days_temp'] = 0
264
265         return result
266
267     def onchange_date_to(self, cr, uid, ids, date_to, date_from):
268         """
269         Update the number_of_days.
270         """
271
272         # date_to has to be greater than date_from
273         if (date_from and date_to) and (date_from > date_to):
274             raise osv.except_osv(_('Warning!'),_('The start date must be anterior to the end date.'))
275
276         result = {'value': {}}
277
278         # Compute and update the number of days
279         if (date_to and date_from) and (date_from <= date_to):
280             diff_day = self._get_number_of_days(date_from, date_to)
281             result['value']['number_of_days_temp'] = round(math.floor(diff_day))+1
282         else:
283             result['value']['number_of_days_temp'] = 0
284
285         return result
286
287     def create(self, cr, uid, values, context=None):
288         """ Override to avoid automatic logging of creation """
289         if context is None:
290             context = {}
291         context = dict(context, mail_create_nolog=True)
292         return super(hr_holidays, self).create(cr, uid, values, context=context)
293
294     def write(self, cr, uid, ids, vals, context=None):
295         check_fnct = self.pool.get('hr.holidays.status').check_access_rights
296         for  holiday in self.browse(cr, uid, ids, context=context):
297             if holiday.state in ('validate','validate1') and not check_fnct(cr, uid, 'write', raise_exception=False):
298                 raise osv.except_osv(_('Warning!'),_('You cannot modify a leave request that has been approved. Contact a human resource manager.'))
299         return super(hr_holidays, self).write(cr, uid, ids, vals, context=context)
300
301     def set_to_draft(self, cr, uid, ids, context=None):
302         self.write(cr, uid, ids, {
303             'state': 'draft',
304             'manager_id': False,
305             'manager_id2': False,
306         })
307         wf_service = netsvc.LocalService("workflow")
308         for id in ids:
309             wf_service.trg_delete(uid, 'hr.holidays', id, cr)
310             wf_service.trg_create(uid, 'hr.holidays', id, cr)
311         to_unlink = []
312         for record in self.browse(cr, uid, ids, context=context):
313             for record2 in record.linked_request_ids:
314                 self.set_to_draft(cr, uid, [record2.id], context=context)
315                 to_unlink.append(record2.id)
316         if to_unlink:
317             self.unlink(cr, uid, to_unlink, context=context)
318         return True
319
320     def holidays_first_validate(self, cr, uid, ids, context=None):
321         self.check_holidays(cr, uid, ids, context=context)
322         obj_emp = self.pool.get('hr.employee')
323         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
324         manager = ids2 and ids2[0] or False
325         self.holidays_first_validate_notificate(cr, uid, ids, context=context)
326         return self.write(cr, uid, ids, {'state':'validate1', 'manager_id': manager})
327
328     def holidays_validate(self, cr, uid, ids, context=None):
329         self.check_holidays(cr, uid, ids, context=context)
330         obj_emp = self.pool.get('hr.employee')
331         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
332         manager = ids2 and ids2[0] or False
333         self.write(cr, uid, ids, {'state':'validate'})
334         data_holiday = self.browse(cr, uid, ids)
335         for record in data_holiday:
336             if record.double_validation:
337                 self.write(cr, uid, [record.id], {'manager_id2': manager})
338             else:
339                 self.write(cr, uid, [record.id], {'manager_id': manager})
340             if record.holiday_type == 'employee' and record.type == 'remove':
341                 meeting_obj = self.pool.get('crm.meeting')
342                 meeting_vals = {
343                     'name': record.name or _('Leave Request'),
344                     'categ_ids': record.holiday_status_id.categ_id and [(6,0,[record.holiday_status_id.categ_id.id])] or [],
345                     'duration': record.number_of_days_temp * 8,
346                     'description': record.notes,
347                     'user_id': record.user_id.id,
348                     'date': record.date_from,
349                     'end_date': record.date_to,
350                     'date_deadline': record.date_to,
351                     'state': 'open',            # to block that meeting date in the calendar
352                 }
353                 meeting_id = meeting_obj.create(cr, uid, meeting_vals)
354                 self._create_resource_leave(cr, uid, [record], context=context)
355                 self.write(cr, uid, ids, {'meeting_id': meeting_id})
356             elif record.holiday_type == 'category':
357                 emp_ids = obj_emp.search(cr, uid, [('category_ids', 'child_of', [record.category_id.id])])
358                 leave_ids = []
359                 for emp in obj_emp.browse(cr, uid, emp_ids):
360                     vals = {
361                         'name': record.name,
362                         'type': record.type,
363                         'holiday_type': 'employee',
364                         'holiday_status_id': record.holiday_status_id.id,
365                         'date_from': record.date_from,
366                         'date_to': record.date_to,
367                         'notes': record.notes,
368                         'number_of_days_temp': record.number_of_days_temp,
369                         'parent_id': record.id,
370                         'employee_id': emp.id
371                     }
372                     leave_ids.append(self.create(cr, uid, vals, context=None))
373                 wf_service = netsvc.LocalService("workflow")
374                 for leave_id in leave_ids:
375                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'confirm', cr)
376                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'validate', cr)
377                     wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'second_validate', cr)
378         return True
379
380     def holidays_confirm(self, cr, uid, ids, context=None):
381         self.check_holidays(cr, uid, ids, context=context)
382         for record in self.browse(cr, uid, ids, context=context):
383             if record.employee_id and record.employee_id.parent_id and record.employee_id.parent_id.user_id:
384                 self.message_subscribe_users(cr, uid, [record.id], user_ids=[record.employee_id.parent_id.user_id.id], context=context)
385         return self.write(cr, uid, ids, {'state': 'confirm'})
386
387     def holidays_refuse(self, cr, uid, ids, context=None):
388         obj_emp = self.pool.get('hr.employee')
389         ids2 = obj_emp.search(cr, uid, [('user_id', '=', uid)])
390         manager = ids2 and ids2[0] or False
391         for holiday in self.browse(cr, uid, ids, context=context):
392             if holiday.state == 'validate1':
393                 self.write(cr, uid, [holiday.id], {'state': 'refuse', 'manager_id': manager})
394             else:
395                 self.write(cr, uid, [holiday.id], {'state': 'refuse', 'manager_id2': manager})
396         self.holidays_cancel(cr, uid, ids, context=context)
397         return True
398
399     def holidays_cancel(self, cr, uid, ids, context=None):
400         meeting_obj = self.pool.get('crm.meeting')
401         for record in self.browse(cr, uid, ids):
402             # Delete the meeting
403             if record.meeting_id:
404                 meeting_obj.unlink(cr, uid, [record.meeting_id.id])
405
406             # If a category that created several holidays, cancel all related
407             wf_service = netsvc.LocalService("workflow")
408             for request in record.linked_request_ids or []:
409                 wf_service.trg_validate(uid, 'hr.holidays', request.id, 'refuse', cr)
410
411         self._remove_resource_leave(cr, uid, ids, context=context)
412         return True
413
414     def check_holidays(self, cr, uid, ids, context=None):
415         holi_status_obj = self.pool.get('hr.holidays.status')
416         for record in self.browse(cr, uid, ids):
417             if record.holiday_type == 'employee' and record.type == 'remove':
418                 if record.employee_id and not record.holiday_status_id.limit:
419                     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']
420                     if leaves_rest < record.number_of_days_temp:
421                         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))
422         return True
423
424     # -----------------------------
425     # OpenChatter and notifications
426     # -----------------------------
427
428     def _needaction_domain_get(self, cr, uid, context=None):
429         emp_obj = self.pool.get('hr.employee')
430         empids = emp_obj.search(cr, uid, [('parent_id.user_id', '=', uid)], context=context)
431         dom = ['&', ('state', '=', 'confirm'), ('employee_id', 'in', empids)]
432         # if this user is a hr.manager, he should do second validations
433         if self.pool.get('res.users').has_group(cr, uid, 'base.group_hr_manager'):
434             dom = ['|'] + dom + [('state', '=', 'validate1')]
435         return dom
436
437     def holidays_first_validate_notificate(self, cr, uid, ids, context=None):
438         for obj in self.browse(cr, uid, ids, context=context):
439             self.message_post(cr, uid, [obj.id],
440                 _("Request approved, waiting second validation."), context=context)
441
442 class resource_calendar_leaves(osv.osv):
443     _inherit = "resource.calendar.leaves"
444     _description = "Leave Detail"
445     _columns = {
446         'holiday_id': fields.many2one("hr.holidays", "Leave Request"),
447     }
448
449 resource_calendar_leaves()
450
451
452 class hr_employee(osv.osv):
453     _inherit="hr.employee"
454
455     def create(self, cr, uid, vals, context=None):
456         # don't pass the value of remaining leave if it's 0 at the creation time, otherwise it will trigger the inverse
457         # function _set_remaining_days and the system may not be configured for. Note that we don't have this problem on
458         # the write because the clients only send the fields that have been modified.
459         if 'remaining_leaves' in vals and not vals['remaining_leaves']:
460             del(vals['remaining_leaves'])
461         return super(hr_employee, self).create(cr, uid, vals, context=context)
462
463     def _set_remaining_days(self, cr, uid, empl_id, name, value, arg, context=None):
464         employee = self.browse(cr, uid, empl_id, context=context)
465         diff = value - employee.remaining_leaves
466         type_obj = self.pool.get('hr.holidays.status')
467         holiday_obj = self.pool.get('hr.holidays')
468         # Find for holidays status
469         status_ids = type_obj.search(cr, uid, [('limit', '=', False)], context=context)
470         if len(status_ids) != 1 :
471             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)))
472         status_id = status_ids and status_ids[0] or False
473         if not status_id:
474             return False
475         if diff > 0:
476             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)
477         elif diff < 0:
478             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)
479         else:
480             return False
481         wf_service = netsvc.LocalService("workflow")
482         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'confirm', cr)
483         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'validate', cr)
484         wf_service.trg_validate(uid, 'hr.holidays', leave_id, 'second_validate', cr)
485         return True
486
487     def _get_remaining_days(self, cr, uid, ids, name, args, context=None):
488         cr.execute("""SELECT
489                 sum(h.number_of_days) as days,
490                 h.employee_id
491             from
492                 hr_holidays h
493                 join hr_holidays_status s on (s.id=h.holiday_status_id)
494             where
495                 h.state='validate' and
496                 s.limit=False and
497                 h.employee_id in (%s)
498             group by h.employee_id"""% (','.join(map(str,ids)),) )
499         res = cr.dictfetchall()
500         remaining = {}
501         for r in res:
502             remaining[r['employee_id']] = r['days']
503         for employee_id in ids:
504             if not remaining.get(employee_id):
505                 remaining[employee_id] = 0.0
506         return remaining
507
508     def _get_leave_status(self, cr, uid, ids, name, args, context=None):
509         holidays_obj = self.pool.get('hr.holidays')
510         holidays_id = holidays_obj.search(cr, uid,
511            [('employee_id', 'in', ids), ('date_from','<=',time.strftime('%Y-%m-%d %H:%M:%S')),
512            ('date_to','>=',time.strftime('%Y-%m-%d 23:59:59')),('type','=','remove'),('state','not in',('cancel','refuse'))],
513            context=context)
514         result = {}
515         for id in ids:
516             result[id] = {
517                 'current_leave_state': False,
518                 'current_leave_id': False,
519                 'leave_date_from':False,
520                 'leave_date_to':False,
521             }
522         for holiday in self.pool.get('hr.holidays').browse(cr, uid, holidays_id, context=context):
523             result[holiday.employee_id.id]['leave_date_from'] = holiday.date_from
524             result[holiday.employee_id.id]['leave_date_to'] = holiday.date_to
525             result[holiday.employee_id.id]['current_leave_state'] = holiday.state
526             result[holiday.employee_id.id]['current_leave_id'] = holiday.holiday_status_id.id
527         return result
528
529     _columns = {
530         '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 request. Total based on all the leave types without overriding limit.'),
531         'current_leave_state': fields.function(_get_leave_status, multi="leave_status", string="Current Leave Status", type="selection",
532             selection=[('draft', 'New'), ('confirm', 'Waiting Approval'), ('refuse', 'Refused'),
533             ('validate1', 'Waiting Second Approval'), ('validate', 'Approved'), ('cancel', 'Cancelled')]),
534         'current_leave_id': fields.function(_get_leave_status, multi="leave_status", string="Current Leave Type",type='many2one', relation='hr.holidays.status'),
535         'leave_date_from': fields.function(_get_leave_status, multi='leave_status', type='date', string='From Date'),
536         'leave_date_to': fields.function(_get_leave_status, multi='leave_status', type='date', string='To Date'),
537     }
538
539 hr_employee()
540
541 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: