# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## from openerp import tools from openerp.osv import fields,osv class hr_timesheet_report(osv.osv): _inherit = "hr.timesheet.report" _columns = { 'to_invoice': fields.many2one('hr_timesheet_invoice.factor', 'Type of Invoicing',readonly=True), 'nbr': fields.integer('# Nbr Timesheet',readonly=True), 'total_diff': fields.float('# Total Diff',readonly=True), 'total_timesheet': fields.float('# Total Timesheet',readonly=True), 'total_attendance': fields.float('# Total Attendance',readonly=True), 'department_id':fields.many2one('hr.department','Department',readonly=True), 'date_from': fields.date('Date from',readonly=True,), 'date_to': fields.date('Date to',readonly=True), 'state' : fields.selection([ ('new', 'New'), ('draft','Draft'), ('confirm','Confirmed'), ('done','Done')], 'Status', readonly=True), } def _select(self): return """ WITH totals AS ( SELECT d.sheet_id, d.name as date, sum(total_difference) / coalesce(sum(j.count),1) as total_diff, sum(total_timesheet) / coalesce(sum(j.count),1) as total_timesheet, sum(total_attendance) / coalesce(sum(j.count),1) as total_attendance FROM hr_timesheet_sheet_sheet_day d left join ( SELECT h.sheet_id, a.date, count(*) FROM account_analytic_line a inner join hr_analytic_timesheet h ON (h.line_id=a.id) GROUP BY h.sheet_id, a.date ) j ON (d.sheet_id = j.sheet_id AND d.name = j.date) GROUP BY d.sheet_id, d.name ) """ + super(hr_timesheet_report, self)._select() + """, htss.name, htss.date_from, htss.date_to, count(*) as nbr, sum(t.total_diff) as total_diff, sum(t.total_timesheet) as total_timesheet, sum(t.total_attendance) as total_attendance, aal.to_invoice, htss.department_id, htss.state""" def _from(self): return super(hr_timesheet_report, self)._from() + "left join hr_timesheet_sheet_sheet as htss ON (hat.sheet_id=htss.id) join totals as t on (t.sheet_id = hat.sheet_id and t.date = aal.date)" def _group_by(self): return super(hr_timesheet_report, self)._group_by() + """, htss.date_from, htss.date_to, aal.unit_amount, aal.amount, aal.to_invoice, htss.name, htss.state, htss.id, htss.department_id""" # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: