board_hr : Timesheet by month, graph view added
[odoo/odoo.git] / addons / hr_timesheet_sheet / report / timesheet_report.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 tools
23 from osv import fields,osv
24
25 class timesheet_report(osv.osv):
26     _name = "timesheet.report"
27     _description = "Timesheet by month "
28     _auto = False
29     _columns = {
30         'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'),
31             ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'),
32             ('10','October'), ('11','November'), ('12','December')], 'Month',readonly=True),
33         'no_of_timesheet': fields.integer('Total Timesheet',readonly=True),
34         }
35
36     def init(self, cr):
37         tools.drop_view_if_exists(cr, 'timesheet_report')
38         cr.execute("""
39             create or replace view timesheet_report as (
40                     select
41                         min(id) as id,
42                         to_char(create_date, 'MM') as month,
43                         user_id,
44                         count(*) as no_of_timesheet
45                     from
46                         hr_timesheet_sheet_sheet
47                     where
48                          to_char(create_date,'YYYY') =  to_char(current_date,'YYYY')
49                     group by
50                         to_char(create_date,'MM'),user_id
51             )
52         """)
53 timesheet_report()