[IMP]:hr_attendance:set internal header in atendance report
[odoo/odoo.git] / addons / hr_attendance / report / attendance_errors.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import time
23 from report import report_sxw
24 import pooler
25 import datetime
26
27 class attendance_print(report_sxw.rml_parse):
28
29     def __init__(self, cr, uid, name, context):
30         super(attendance_print, self).__init__(cr, uid, name, context=context)
31         self.localcontext.update({
32             'time': time,
33             'lst': self._lst,
34             'total': self._lst_total,
35             'get_employees':self._get_employees,
36         })
37
38     def _get_employees(self, emp_ids):
39         emp_obj_list = self.pool.get('hr.employee').browse(self.cr, self.uid, emp_ids)
40         return emp_obj_list
41
42
43     def _lst(self, employee_id, dt_from, dt_to, max, *args):
44         self.cr.execute("select name as date, create_date, action, create_date-name as delay from hr_attendance where employee_id=%s and to_char(name,'YYYY-mm-dd')<=%s and to_char(name,'YYYY-mm-dd')>=%s and action IN (%s,%s) order by name", (employee_id, dt_to, dt_from, 'sign_in', 'sign_out'))
45         res = self.cr.dictfetchall()
46         for r in res:
47             if r['action'] == 'sign_out':
48                 r['delay'] = -r['delay']
49             temp = r['delay'].seconds
50
51             r['delay'] = str(r['delay']).split('.')[0]
52             if abs(temp) < max*60:
53                 r['delay2'] = r['delay']
54             else:
55                 r['delay2'] = '/'
56         return res
57
58     def _lst_total(self, employee_id, dt_from, dt_to, max, *args):
59         self.cr.execute("select name as date, create_date, action, create_date-name as delay from hr_attendance where employee_id=%s and to_char(name,'YYYY-mm-dd')<=%s and to_char(name,'YYYY-mm-dd')>=%s and action IN (%s,%s) order by name", (employee_id, dt_to, dt_from, 'sign_in', 'sign_out'))
60         res = self.cr.dictfetchall()
61         if not res:
62             return ('/','/')
63         total2 = datetime.timedelta(seconds = 0, minutes = 0, hours = 0)
64         total = datetime.timedelta(seconds = 0, minutes = 0, hours = 0)
65         for r in res:
66             if r['action'] == 'sign_out':
67                 r['delay'] = -r['delay']
68             total += r['delay']
69             if abs(r['delay'].seconds) < max*60:
70                 total2 += r['delay']
71
72         result_dict = {
73                 'total': total and str(total).split('.')[0],
74                 'total2': total2  and str(total2).split('.')[0]
75                 }
76         return [result_dict]
77
78 report_sxw.report_sxw('report.hr.attendance.error', 'hr.employee', 'addons/hr_attendance/report/attendance_errors.rml', parser=attendance_print, header='internal')
79
80 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
81