[FIX]: Fix onchange account id problem
[odoo/odoo.git] / addons / hr_timesheet_sheet / hr_timesheet_sheet.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 datetime import datetime, timedelta
24 from dateutil.relativedelta import relativedelta
25
26 from osv import fields, osv
27 from tools.translate import _
28 import netsvc
29
30 class hr_timesheet_sheet(osv.osv):
31     _name = "hr_timesheet_sheet.sheet"
32     _inherit = "mail.thread"
33     _table = 'hr_timesheet_sheet_sheet'
34     _order = "id desc"
35     _description="Timesheet"
36
37     def _total_attendances(self, cr, uid, ids, name, args, context=None):
38         """ Get the total attendance for the timesheets
39             Returns a dict like :
40                 {id: {'total_per_day': {day: timedelta, ...},
41                      },
42                  ...
43                 }
44         """
45         context = context or {}
46         attendance_obj = self.pool.get('hr.attendance')
47         res = {}
48         for sheet_id in ids:
49             sheet = self.browse(cr, uid, sheet_id, context=context)
50             # field attendances_ids of hr_timesheet_sheet.sheet only
51             # returns attendances of timesheet's current date
52             attendance_ids = attendance_obj.search(cr, uid, [('sheet_id', '=', sheet_id)], context=context)
53             attendances = attendance_obj.browse(cr, uid, attendance_ids, context=context)
54             total_attendance = {}
55             for attendance in [att for att in attendances
56                                if att.action in ('sign_in', 'sign_out')]:
57                 day = attendance.name[:10]
58                 if not total_attendance.get(day, False):
59                     total_attendance[day] = timedelta(seconds=0)
60
61                 attendance_in_time = datetime.strptime(attendance.name, '%Y-%m-%d %H:%M:%S')
62                 attendance_interval = timedelta(hours=attendance_in_time.hour,
63                                                 minutes=attendance_in_time.minute,
64                                                 seconds=attendance_in_time.second)
65                 if attendance.action == 'sign_in':
66                     total_attendance[day] -= attendance_interval
67                 else:
68                     total_attendance[day] += attendance_interval
69
70             res[sheet_id] = {'total_per_day': total_attendance}
71         return res
72
73     def _total_timesheet(self, cr, uid, ids, name, args, context=None):
74         """ Get the total of analytic lines for the timesheets
75             Returns a dict like :
76                 {id: {day: timedelta, ...}}
77         """
78         context = context or {}
79         sheet_line_obj = self.pool.get('hr.analytic.timesheet')
80
81         res = {}
82         for sheet_id in ids:
83             # field timesheet_ids of hr_timesheet_sheet.sheet only
84             # returns lines of timesheet's current date
85             sheet_lines_ids = sheet_line_obj.search(cr, uid, [('sheet_id', '=', sheet_id)], context=context)
86             sheet_lines = sheet_line_obj.browse(cr, uid, sheet_lines_ids, context=context)
87             total_timesheet = {}
88             for line in sheet_lines:
89                 day = line.date
90                 if not total_timesheet.get(day, False):
91                     total_timesheet[day] = timedelta(seconds=0)
92                 total_timesheet[day] += timedelta(hours=line.unit_amount)
93             res[sheet_id] = total_timesheet
94         return res
95
96     def _total(self, cr, uid, ids, name, args, context=None):
97         """ Compute the attendances, analytic lines timesheets and differences between them
98             for all the days of a timesheet and the current day
99         """
100         def sum_all_days(sheet_amounts):
101             if not sheet_amounts:
102                 return timedelta(seconds=0)
103             total = reduce(lambda memo, value: memo + value, sheet_amounts.values())
104             return total
105
106         def timedelta_to_hours(delta):
107             hours = 0.0
108             seconds = float(delta.seconds)
109             if delta.microseconds:
110                 seconds += float(delta.microseconds) / 100000
111             hours += delta.days * 24
112             if seconds:
113                 hours += seconds / 3600
114             return hours
115
116         res = {}
117         all_timesheet_attendances = self._total_attendances(cr, uid, ids, name, args, context=context)
118         all_timesheet_lines = self._total_timesheet(cr, uid, ids, name, args, context=context)
119         for id in ids:
120             res[id] = {}
121
122             all_attendances_sheet = all_timesheet_attendances[id]
123
124             total_attendances_sheet = all_attendances_sheet['total_per_day']
125             total_attendances_all_days = sum_all_days(total_attendances_sheet)
126
127             total_timesheets_sheet = all_timesheet_lines[id]
128             total_timesheets_all_days = sum_all_days(total_timesheets_sheet)
129             total_difference_all_days = total_attendances_all_days - total_timesheets_all_days
130
131             res[id]['total_attendance'] = timedelta_to_hours(total_attendances_all_days)
132             res[id]['total_timesheet'] = timedelta_to_hours(total_timesheets_all_days)
133             res[id]['total_difference'] = timedelta_to_hours(total_difference_all_days)
134         return res
135
136     def check_employee_attendance_state(self, cr, uid, sheet_id, context=None):
137         ids_signin = self.pool.get('hr.attendance').search(cr,uid,[('sheet_id', '=', sheet_id),('action','=','sign_in')])
138         ids_signout = self.pool.get('hr.attendance').search(cr,uid,[('sheet_id', '=', sheet_id),('action','=','sign_out')])
139
140         if len(ids_signin) != len(ids_signout):
141             raise osv.except_osv(('Warning!'),_('The timesheet cannot be validated as it does not contain an equal number of sign ins and sign outs.'))
142         return True
143
144     def copy(self, cr, uid, ids, *args, **argv):
145         raise osv.except_osv(_('Error!'), _('You cannot duplicate a timesheet.'))
146
147     def create(self, cr, uid, vals, *args, **argv):
148         if 'employee_id' in vals:
149             if not self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).user_id:
150                 raise osv.except_osv(_('Error!'), _('In order to create a timesheet for this employee, you must assign it to a user.'))
151             if not self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).product_id:
152                 raise osv.except_osv(_('Error!'), _('In order to create a timesheet for this employee, you must link the employee to a product, like \'Consultant\'.'))
153             if not self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).journal_id:
154                 raise osv.except_osv(_('Error!'), _('In order to create a timesheet for this employee, you must assign the employee to an analytic journal, like \'Timesheet\'.'))
155         return super(hr_timesheet_sheet, self).create(cr, uid, vals, *args, **argv)
156
157     def write(self, cr, uid, ids, vals, *args, **argv):
158         if 'employee_id' in vals:
159             new_user_id = self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).user_id.id or False
160             if not new_user_id:
161                 raise osv.except_osv(_('Error!'), _('In order to create a timesheet for this employee, you must assign it to a user.'))
162             if not self._sheet_date(cr, uid, ids, forced_user_id=new_user_id):
163                 raise osv.except_osv(_('Error!'), _('You cannot have 2 timesheets that overlaps!\nYou should use the menu \'My Timesheet\' to avoid this problem.'))
164             if not self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).product_id:
165                 raise osv.except_osv(_('Error!'), _('In order to create a timesheet for this employee, you must link the employee to a product.'))
166             if not self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).journal_id:
167                 raise osv.except_osv(_('Error!'), _('In order to create a timesheet for this employee, you must assign the employee to an analytic journal.'))
168         return super(hr_timesheet_sheet, self).write(cr, uid, ids, vals, *args, **argv)
169
170     def button_confirm(self, cr, uid, ids, context=None):
171         for sheet in self.browse(cr, uid, ids, context=context):
172             if sheet.employee_id and sheet.employee_id.parent_id and sheet.employee_id.parent_id.user_id:
173                 self.message_subscribe_users(cr, uid, [sheet.id], user_ids=[sheet.employee_id.parent_id.user_id.id], context=context)
174             self.check_employee_attendance_state(cr, uid, sheet.id, context=context)
175             di = sheet.user_id.company_id.timesheet_max_difference
176             if (abs(sheet.total_difference) < di) or not di:
177                 wf_service = netsvc.LocalService("workflow")
178                 wf_service.trg_validate(uid, 'hr_timesheet_sheet.sheet', sheet.id, 'confirm', cr)
179             else:
180                 raise osv.except_osv(_('Warning!'), _('Please verify that the total difference of the sheet is lower than %.2f.') %(di,))
181         return True
182
183     def attendance_action_change(self, cr, uid, ids, context=None):
184         hr_employee = self.pool.get('hr.employee')
185         employee_ids = []
186         for sheet in self.browse(cr, uid, ids, context=context):
187             if sheet.employee_id.id not in employee_ids: employee_ids.append(sheet.employee_id.id)
188         return hr_employee.attendance_action_change(cr, uid, employee_ids, context=context)
189
190     _columns = {
191         'name': fields.char('Note', size=64, select=1,
192                             states={'confirm':[('readonly', True)], 'done':[('readonly', True)]}),
193         'employee_id': fields.many2one('hr.employee', 'Employee', required=True),
194         'user_id': fields.related('employee_id', 'user_id', type="many2one", relation="res.users", store=True, string="User", required=False, readonly=True),#fields.many2one('res.users', 'User', required=True, select=1, states={'confirm':[('readonly', True)], 'done':[('readonly', True)]}),
195         'date_from': fields.date('Date from', required=True, select=1, readonly=True, states={'new':[('readonly', False)]}),
196         'date_to': fields.date('Date to', required=True, select=1, readonly=True, states={'new':[('readonly', False)]}),
197         'timesheet_ids' : fields.one2many('hr.analytic.timesheet', 'sheet_id',
198             'Timesheet lines',
199             readonly=True, states={
200                 'draft': [('readonly', False)],
201                 'new': [('readonly', False)]}
202             ),
203         'attendances_ids' : fields.one2many('hr.attendance', 'sheet_id', 'Attendances'),
204         'state' : fields.selection([
205             ('new', 'New'),
206             ('draft','Open'),
207             ('confirm','Waiting Approval'),
208             ('done','Approved')], 'Status', select=True, required=True, readonly=True,
209             help=' * The \'Draft\' state is used when a user is encoding a new and unconfirmed timesheet. \
210                 \n* The \'Confirmed\' state is used for to confirm the timesheet by user. \
211                 \n* The \'Done\' state is used when users timesheet is accepted by his/her senior.'),
212         'state_attendance' : fields.related('employee_id', 'state', type='selection', selection=[('absent', 'Absent'), ('present', 'Present')], string='Current Status', readonly=True),
213         'total_attendance': fields.function(_total, method=True, string='Total Attendance', multi="_total"),
214         'total_timesheet': fields.function(_total, method=True, string='Total Timesheet', multi="_total"),
215         'total_difference': fields.function(_total, method=True, string='Difference', multi="_total"),
216         'period_ids': fields.one2many('hr_timesheet_sheet.sheet.day', 'sheet_id', 'Period', readonly=True),
217         'account_ids': fields.one2many('hr_timesheet_sheet.sheet.account', 'sheet_id', 'Analytic accounts', readonly=True),
218         'company_id': fields.many2one('res.company', 'Company'),
219         'department_id':fields.many2one('hr.department','Department'),
220     }
221
222     def _default_date_from(self, cr, uid, context=None):
223         user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
224         r = user.company_id and user.company_id.timesheet_range or 'month'
225         if r=='month':
226             return time.strftime('%Y-%m-01')
227         elif r=='week':
228             return (datetime.today() + relativedelta(weekday=0, days=-6)).strftime('%Y-%m-%d')
229         elif r=='year':
230             return time.strftime('%Y-01-01')
231         return time.strftime('%Y-%m-%d')
232
233     def _default_date_to(self, cr, uid, context=None):
234         user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
235         r = user.company_id and user.company_id.timesheet_range or 'month'
236         if r=='month':
237             return (datetime.today() + relativedelta(months=+1,day=1,days=-1)).strftime('%Y-%m-%d')
238         elif r=='week':
239             return (datetime.today() + relativedelta(weekday=6)).strftime('%Y-%m-%d')
240         elif r=='year':
241             return time.strftime('%Y-12-31')
242         return time.strftime('%Y-%m-%d')
243
244     def _default_employee(self, cr, uid, context=None):
245         emp_ids = self.pool.get('hr.employee').search(cr, uid, [('user_id','=',uid)], context=context)
246         return emp_ids and emp_ids[0] or False
247
248     _defaults = {
249         'date_from' : _default_date_from,
250         'date_to' : _default_date_to,
251         'state': 'new',
252         'employee_id': _default_employee,
253         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'hr_timesheet_sheet.sheet', context=c)
254     }
255
256     def _sheet_date(self, cr, uid, ids, forced_user_id=False, context=None):
257         for sheet in self.browse(cr, uid, ids, context=context):
258             new_user_id = forced_user_id or sheet.user_id and sheet.user_id.id
259             if new_user_id:
260                 cr.execute('SELECT id \
261                     FROM hr_timesheet_sheet_sheet \
262                     WHERE (date_from <= %s and %s <= date_to) \
263                         AND user_id=%s \
264                         AND id <> %s',(sheet.date_to, sheet.date_from, new_user_id, sheet.id))
265                 if cr.fetchall():
266                     return False
267         return True
268
269
270     _constraints = [
271         (_sheet_date, 'You cannot have 2 timesheets that overlaps !\nPlease use the menu \'My Current Timesheet\' to avoid this problem.', ['date_from','date_to']),
272     ]
273
274     def action_set_to_draft(self, cr, uid, ids, *args):
275         self.write(cr, uid, ids, {'state': 'draft'})
276         wf_service = netsvc.LocalService('workflow')
277         for id in ids:
278             wf_service.trg_create(uid, self._name, id, cr)
279         return True
280
281     def name_get(self, cr, uid, ids, context=None):
282         if not ids:
283             return []
284         if isinstance(ids, (long, int)):
285             ids = [ids]
286         return [(r['id'], r['date_from'] + ' - ' + r['date_to']) \
287                 for r in self.read(cr, uid, ids, ['date_from', 'date_to'],
288                     context=context, load='_classic_write')]
289
290     def unlink(self, cr, uid, ids, context=None):
291         sheets = self.read(cr, uid, ids, ['state','total_attendance'], context=context)
292         for sheet in sheets:
293             if sheet['state'] in ('confirm', 'done'):
294                 raise osv.except_osv(_('Invalid Action!'), _('You cannot delete a timesheet which is already confirmed.'))
295             elif sheet['total_attendance'] <> 0.00:
296                 raise osv.except_osv(_('Invalid Action!'), _('You cannot delete a timesheet which have attendance entries.'))
297         return super(hr_timesheet_sheet, self).unlink(cr, uid, ids, context=context)
298
299     def onchange_employee_id(self, cr, uid, ids, employee_id, context=None):
300         department_id =  False
301         if employee_id:
302             department_id = self.pool.get('hr.employee').browse(cr, uid, employee_id, context=context).department_id.id
303         return {'value': {'department_id': department_id}}
304
305 hr_timesheet_sheet()
306
307
308 class hr_timesheet_line(osv.osv):
309     _inherit = "hr.analytic.timesheet"
310
311         
312     def _get_default_date(self, cr, uid, context=None):
313         if context is None:
314             context = {}
315         if 'date' in context:
316             return context['date']
317         return time.strftime('%Y-%m-%d')
318
319     def _sheet(self, cursor, user, ids, name, args, context=None):
320         sheet_obj = self.pool.get('hr_timesheet_sheet.sheet')
321         res = {}.fromkeys(ids, False)
322         for ts_line in self.browse(cursor, user, ids, context=context):
323             sheet_ids = sheet_obj.search(cursor, user,
324                 [('date_to', '>=', ts_line.date), ('date_from', '<=', ts_line.date),
325                  ('employee_id.user_id', '=', ts_line.user_id.id)],
326                 context=context)
327             if sheet_ids:
328             # [0] because only one sheet possible for an employee between 2 dates
329                 res[ts_line.id] = sheet_obj.name_get(cursor, user, sheet_ids, context=context)[0]
330         return res
331
332     def _get_hr_timesheet_sheet(self, cr, uid, ids, context=None):
333         ts_line_ids = []
334         for ts in self.browse(cr, uid, ids, context=context):
335             cr.execute("""
336                     SELECT l.id
337                         FROM hr_analytic_timesheet l
338                     INNER JOIN account_analytic_line al
339                         ON (l.line_id = al.id)
340                     WHERE %(date_to)s >= al.date
341                         AND %(date_from)s <= al.date
342                         AND %(user_id)s = al.user_id
343                     GROUP BY l.id""", {'date_from': ts.date_from,
344                                         'date_to': ts.date_to,
345                                         'user_id': ts.employee_id.user_id.id,})
346             ts_line_ids.extend([row[0] for row in cr.fetchall()])
347         return ts_line_ids
348
349     def _get_account_analytic_line(self, cr, uid, ids, context=None):
350         ts_line_ids = self.pool.get('hr.analytic.timesheet').search(cr, uid, [('line_id', 'in', ids)])
351         return ts_line_ids
352
353     _columns = {
354         'sheet_id': fields.function(_sheet, string='Sheet',
355             type='many2one', relation='hr_timesheet_sheet.sheet', ondelete="cascade",
356             store={
357                     'hr_timesheet_sheet.sheet': (_get_hr_timesheet_sheet, ['employee_id', 'date_from', 'date_to'], 10),
358                     'account.analytic.line': (_get_account_analytic_line, ['user_id', 'date'], 10),
359                     'hr.analytic.timesheet': (lambda self,cr,uid,ids,context=None: ids, None, 10),
360                   },
361             ),
362     }
363     _defaults = {
364         'date': _get_default_date,
365     }
366
367     def _check_sheet_state(self, cr, uid, ids, context=None):
368         if context is None:
369             context = {}
370         for timesheet_line in self.browse(cr, uid, ids, context=context):
371             if timesheet_line.sheet_id and timesheet_line.sheet_id.state not in ('draft', 'new'):
372                 return False
373         return True
374
375     _constraints = [
376         (_check_sheet_state, 'You cannot modify an entry in a Confirmed/Done timesheet !', ['state']),
377     ]
378
379     def unlink(self, cr, uid, ids, *args, **kwargs):
380         if isinstance(ids, (int, long)):
381             ids = [ids]
382         self._check(cr, uid, ids)
383         return super(hr_timesheet_line,self).unlink(cr, uid, ids,*args, **kwargs)
384
385     def _check(self, cr, uid, ids):
386         for att in self.browse(cr, uid, ids):
387             if att.sheet_id and att.sheet_id.state not in ('draft', 'new'):
388                 raise osv.except_osv(_('Error!'), _('You cannot modify an entry in a confirmed timesheet.'))
389         return True
390
391     def multi_on_change_account_id(self, cr, uid, ids, account_ids, context=None):
392         return dict([(el, self.on_change_account_id(cr, uid, ids, el, context.get('user_id', False) or uid)) for el in account_ids])
393
394
395 hr_timesheet_line()
396
397 class hr_attendance(osv.osv):
398     _inherit = "hr.attendance"
399
400     def _get_default_date(self, cr, uid, context=None):
401         if context is None:
402             context = {}
403         if 'name' in context:
404             return context['name'] + time.strftime(' %H:%M:%S')
405         return time.strftime('%Y-%m-%d %H:%M:%S')
406
407     def _get_hr_timesheet_sheet(self, cr, uid, ids, context=None):
408         attendance_ids = []
409         for ts in self.browse(cr, uid, ids, context=context):
410             cr.execute("""
411                         SELECT a.id
412                           FROM hr_attendance a
413                          INNER JOIN hr_employee e
414                                INNER JOIN resource_resource r
415                                        ON (e.resource_id = r.id)
416                             ON (a.employee_id = e.id)
417                         WHERE %(date_to)s >= date_trunc('day', a.name)
418                               AND %(date_from)s <= a.name
419                               AND %(user_id)s = r.user_id
420                          GROUP BY a.id""", {'date_from': ts.date_from,
421                                             'date_to': ts.date_to,
422                                             'user_id': ts.employee_id.user_id.id,})
423             attendance_ids.extend([row[0] for row in cr.fetchall()])
424         return attendance_ids
425
426     def _sheet(self, cursor, user, ids, name, args, context=None):
427         sheet_obj = self.pool.get('hr_timesheet_sheet.sheet')
428         res = {}.fromkeys(ids, False)
429         for attendance in self.browse(cursor, user, ids, context=context):
430             date_to = datetime.strftime(datetime.strptime(attendance.name[0:10], '%Y-%m-%d'), '%Y-%m-%d %H:%M:%S')
431             sheet_ids = sheet_obj.search(cursor, user,
432                 [('date_to', '>=', date_to), ('date_from', '<=', attendance.name),
433                  ('employee_id', '=', attendance.employee_id.id)],
434                 context=context)
435             if sheet_ids:
436                 # [0] because only one sheet possible for an employee between 2 dates
437                 res[attendance.id] = sheet_obj.name_get(cursor, user, sheet_ids, context=context)[0]
438         return res
439
440     _columns = {
441         'sheet_id': fields.function(_sheet, string='Sheet',
442             type='many2one', relation='hr_timesheet_sheet.sheet',
443             store={
444                       'hr_timesheet_sheet.sheet': (_get_hr_timesheet_sheet, ['employee_id', 'date_from', 'date_to'], 10),
445                       'hr.attendance': (lambda self,cr,uid,ids,context=None: ids, ['employee_id', 'name', 'day'], 10),
446                   },
447             )
448     }
449     _defaults = {
450         'name': _get_default_date,
451     }
452
453     def create(self, cr, uid, vals, context=None):
454         if context is None:
455             context = {}
456         if 'sheet_id' in context:
457             ts = self.pool.get('hr_timesheet_sheet.sheet').browse(cr, uid, context['sheet_id'], context=context)
458             if ts.state not in ('draft', 'new'):
459                 raise osv.except_osv(_('Error!'), _('You cannot modify an entry in a confirmed timesheet.'))
460         res = super(hr_attendance,self).create(cr, uid, vals, context=context)
461         if 'sheet_id' in context:
462             if context['sheet_id'] != self.browse(cr, uid, res, context=context).sheet_id.id:
463                 raise osv.except_osv(_('User Error!'), _('You cannot enter an attendance ' \
464                         'date outside the current timesheet dates.'))
465         return res
466
467     def unlink(self, cr, uid, ids, *args, **kwargs):
468         if isinstance(ids, (int, long)):
469             ids = [ids]
470         self._check(cr, uid, ids)
471         return super(hr_attendance,self).unlink(cr, uid, ids,*args, **kwargs)
472
473     def write(self, cr, uid, ids, vals, context=None):
474         if context is None:
475             context = {}
476         if isinstance(ids, (int, long)):
477             ids = [ids]
478         self._check(cr, uid, ids)
479         res = super(hr_attendance,self).write(cr, uid, ids, vals, context=context)
480         if 'sheet_id' in context:
481             for attendance in self.browse(cr, uid, ids, context=context):
482                 if context['sheet_id'] != attendance.sheet_id.id:
483                     raise osv.except_osv(_('User Error!'), _('You cannot enter an attendance ' \
484                             'date outside the current timesheet dates.'))
485         return res
486
487     def _check(self, cr, uid, ids):
488         for att in self.browse(cr, uid, ids):
489             if att.sheet_id and att.sheet_id.state not in ('draft', 'new'):
490                 raise osv.except_osv(_('Error!'), _('You cannot modify an entry in a confirmed timesheet'))
491         return True
492
493 hr_attendance()
494
495 class hr_timesheet_sheet_sheet_day(osv.osv):
496     _name = "hr_timesheet_sheet.sheet.day"
497     _description = "Timesheets by Period"
498     _auto = False
499     _order='name'
500     _columns = {
501         'name': fields.date('Date', readonly=True),
502         'sheet_id': fields.many2one('hr_timesheet_sheet.sheet', 'Sheet', readonly=True, select="1"),
503         'total_timesheet': fields.float('Total Timesheet', readonly=True),
504         'total_attendance': fields.float('Attendance', readonly=True),
505         'total_difference': fields.float('Difference', readonly=True),
506     }
507
508     def init(self, cr):
509         cr.execute("""create or replace view hr_timesheet_sheet_sheet_day as
510             SELECT
511                 id,
512                 name,
513                 sheet_id,
514                 total_timesheet,
515                 total_attendance,
516                 cast(round(cast(total_attendance - total_timesheet as Numeric),2) as Double Precision) AS total_difference
517             FROM
518                 ((
519                     SELECT
520                         MAX(id) as id,
521                         name,
522                         sheet_id,
523                         SUM(total_timesheet) as total_timesheet,
524                         CASE WHEN SUM(total_attendance) < 0
525                             THEN (SUM(total_attendance) +
526                                 CASE WHEN current_date <> name
527                                     THEN 1440
528                                     ELSE (EXTRACT(hour FROM current_time) * 60) + EXTRACT(minute FROM current_time)
529                                 END
530                                 )
531                             ELSE SUM(total_attendance)
532                         END /60  as total_attendance
533                     FROM
534                         ((
535                             select
536                                 min(hrt.id) as id,
537                                 l.date::date as name,
538                                 s.id as sheet_id,
539                                 sum(l.unit_amount) as total_timesheet,
540                                 0.0 as total_attendance
541                             from
542                                 hr_analytic_timesheet hrt
543                                 left join (account_analytic_line l
544                                     LEFT JOIN hr_timesheet_sheet_sheet s
545                                     ON (s.date_to >= l.date
546                                         AND s.date_from <= l.date
547                                         AND s.user_id = l.user_id))
548                                     on (l.id = hrt.line_id)
549                             group by l.date::date, s.id
550                         ) union (
551                             select
552                                 -min(a.id) as id,
553                                 a.name::date as name,
554                                 s.id as sheet_id,
555                                 0.0 as total_timesheet,
556                                 SUM(((EXTRACT(hour FROM a.name) * 60) + EXTRACT(minute FROM a.name)) * (CASE WHEN a.action = 'sign_in' THEN -1 ELSE 1 END)) as total_attendance
557                             from
558                                 hr_attendance a
559                                 LEFT JOIN (hr_timesheet_sheet_sheet s
560                                     LEFT JOIN resource_resource r
561                                         LEFT JOIN hr_employee e
562                                         ON (e.resource_id = r.id)
563                                     ON (s.user_id = r.user_id))
564                                 ON (a.employee_id = e.id
565                                     AND s.date_to >= date_trunc('day',a.name)
566                                     AND s.date_from <= a.name)
567                             WHERE action in ('sign_in', 'sign_out')
568                             group by a.name::date, s.id
569                         )) AS foo
570                         GROUP BY name, sheet_id
571                 )) AS bar""")
572
573 hr_timesheet_sheet_sheet_day()
574
575
576 class hr_timesheet_sheet_sheet_account(osv.osv):
577     _name = "hr_timesheet_sheet.sheet.account"
578     _description = "Timesheets by Period"
579     _auto = False
580     _order='name'
581     _columns = {
582         'name': fields.many2one('account.analytic.account', 'Project / Analytic Account', readonly=True),
583         'sheet_id': fields.many2one('hr_timesheet_sheet.sheet', 'Sheet', readonly=True),
584         'total': fields.float('Total Time', digits=(16,2), readonly=True),
585         'invoice_rate': fields.many2one('hr_timesheet_invoice.factor', 'Invoice rate', readonly=True),
586         }
587
588     def init(self, cr):
589         cr.execute("""create or replace view hr_timesheet_sheet_sheet_account as (
590             select
591                 min(hrt.id) as id,
592                 l.account_id as name,
593                 s.id as sheet_id,
594                 sum(l.unit_amount) as total,
595                 l.to_invoice as invoice_rate
596             from
597                 hr_analytic_timesheet hrt
598                 left join (account_analytic_line l
599                     LEFT JOIN hr_timesheet_sheet_sheet s
600                         ON (s.date_to >= l.date
601                             AND s.date_from <= l.date
602                             AND s.user_id = l.user_id))
603                     on (l.id = hrt.line_id)
604             group by l.account_id, s.id, l.to_invoice
605         )""")
606
607 hr_timesheet_sheet_sheet_account()
608
609
610
611 class res_company(osv.osv):
612     _inherit = 'res.company'
613     _columns = {
614         'timesheet_range': fields.selection(
615             [('day','Day'),('week','Week'),('month','Month')], 'Timesheet range',
616             help="Periodicity on which you validate your timesheets."),
617         'timesheet_max_difference': fields.float('Timesheet allowed difference(Hours)',
618             help="Allowed difference in hours between the sign in/out and the timesheet " \
619                  "computation for one sheet. Set this to 0 if you do not want any control."),
620     }
621     _defaults = {
622         'timesheet_range': lambda *args: 'week',
623         'timesheet_max_difference': lambda *args: 0.0
624     }
625
626 res_company()
627
628 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
629