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