[FIX] correct various date issues in reporting
[odoo/odoo.git] / addons / project / report / project_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 from openerp.osv import fields, osv
23 from openerp import tools
24
25
26 class report_project_task_user(osv.osv):
27     _name = "report.project.task.user"
28     _description = "Tasks by user and project"
29     _auto = False
30     _columns = {
31         'name': fields.char('Task Summary', readonly=True),
32         'user_id': fields.many2one('res.users', 'Assigned To', readonly=True),
33         'reviewer_id': fields.many2one('res.users', 'Reviewer', readonly=True),
34         'date_start': fields.date('Assignation Date', readonly=True),
35         'no_of_days': fields.integer('# of Days', size=128, readonly=True),
36         'date_end': fields.date('Ending Date', readonly=True),
37         'date_deadline': fields.date('Deadline', readonly=True),
38         'date_last_stage_update': fields.date('Last Stage Update', readonly=True),
39         'project_id': fields.many2one('project.project', 'Project', readonly=True),
40         'hours_planned': fields.float('Planned Hours', readonly=True),
41         'hours_effective': fields.float('Effective Hours', readonly=True),
42         'hours_delay': fields.float('Avg. Plan.-Eff.', readonly=True),
43         'remaining_hours': fields.float('Remaining Hours', readonly=True),
44         'progress': fields.float('Progress', readonly=True, group_operator='avg'),
45         'total_hours': fields.float('Total Hours', readonly=True),
46         'closing_days': fields.float('Days to Close', digits=(16,2), readonly=True, group_operator="avg",
47                                        help="Number of Days to close the task"),
48         'opening_days': fields.float('Days to Assign', digits=(16,2), readonly=True, group_operator="avg",
49                                        help="Number of Days to Open the task"),
50         'delay_endings_days': fields.float('Overpassed Deadline', digits=(16,2), readonly=True),
51         'nbr': fields.integer('# of tasks', readonly=True),
52         'priority': fields.selection([('0','Low'), ('1','Normal'), ('2','High')],
53             string='Priority', size=1, readonly=True),
54         'state': fields.selection([('draft', 'Draft'), ('open', 'In Progress'), ('pending', 'Pending'), ('cancelled', 'Cancelled'), ('done', 'Done')],'Status', readonly=True),
55         'company_id': fields.many2one('res.company', 'Company', readonly=True),
56         'partner_id': fields.many2one('res.partner', 'Contact', readonly=True),
57         'stage_id': fields.many2one('project.task.type', 'Stage'),
58     }
59     _order = 'name desc, project_id'
60
61     def init(self, cr):
62         tools.sql.drop_view_if_exists(cr, 'report_project_task_user')
63         cr.execute("""
64             CREATE view report_project_task_user as
65               SELECT
66                     (select 1 ) AS nbr,
67                     t.id as id,
68                     date(t.date_start) as date_start,
69                     date(t.date_end) as date_end,
70                     date(t.date_last_stage_update) as date_last_stage_update,
71                     t.date_deadline as date_deadline,
72                     abs((extract('epoch' from (t.write_date-t.date_start)))/(3600*24))  as no_of_days,
73                     t.user_id,
74                     t.reviewer_id,
75                     progress as progress,
76                     t.project_id,
77                     t.effective_hours as hours_effective,
78                     t.priority,
79                     t.name as name,
80                     t.company_id,
81                     t.partner_id,
82                     t.stage_id as stage_id,
83                     remaining_hours as remaining_hours,
84                     total_hours as total_hours,
85                     t.delay_hours as hours_delay,
86                     planned_hours as hours_planned,
87                     (extract('epoch' from (t.write_date-t.create_date)))/(3600*24)  as closing_days,
88                     (extract('epoch' from (t.date_start-t.create_date)))/(3600*24)  as opening_days,
89                     abs((extract('epoch' from (t.date_deadline-t.write_date)))/(3600*24))  as delay_endings_days
90               FROM project_task t
91                 WHERE t.active = 'true'
92                 GROUP BY
93                     t.id,
94                     remaining_hours,
95                     t.effective_hours,
96                     progress,
97                     total_hours,
98                     planned_hours,
99                     hours_delay,
100                     create_date,
101                     write_date,
102                     date_start,
103                     date_end,
104                     date_deadline,
105                     date_last_stage_update,
106                     t.user_id,
107                     t.reviewer_id,
108                     t.project_id,
109                     t.priority,
110                     name,
111                     t.company_id,
112                     t.partner_id,
113                     stage_id
114         """)