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