[FIX] project: when writing on several projects, don't erase the name of all projects...
[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 class report_project_task_user(osv.osv):
26     _name = "report.project.task.user"
27     _description = "Tasks by user and project"
28     _auto = False
29     _columns = {
30         'name': fields.char('Task Summary', size=128, readonly=True),
31         'day': fields.char('Day', size=128, readonly=True),
32         'year': fields.char('Year', size=64, required=False, readonly=True),
33         'user_id': fields.many2one('res.users', 'Assigned To', readonly=True),
34         'date_start': fields.date('Starting 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         'project_id': fields.many2one('project.project', 'Project', readonly=True),
39         'hours_planned': fields.float('Planned Hours', readonly=True),
40         'hours_effective': fields.float('Effective Hours', readonly=True),
41         'hours_delay': fields.float('Avg. Plan.-Eff.', readonly=True),
42         'remaining_hours': fields.float('Remaining Hours', readonly=True),
43         'progress': fields.float('Progress', readonly=True, group_operator='avg'),
44         'total_hours': fields.float('Total Hours', readonly=True),
45         'closing_days': fields.float('Days to Close', digits=(16,2), readonly=True, group_operator="avg",
46                                        help="Number of Days to close the task"),
47         'opening_days': fields.float('Days to Open', digits=(16,2), readonly=True, group_operator="avg",
48                                        help="Number of Days to Open the task"),
49         'delay_endings_days': fields.float('Overpassed Deadline', digits=(16,2), readonly=True),
50         'nbr': fields.integer('# of tasks', readonly=True),
51         'priority' : fields.selection([('4','Very Low'), ('3','Low'), ('2','Medium'), ('1','Urgent'),
52 ('0','Very urgent')], 'Priority', readonly=True),
53         'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'), ('10','October'), ('11','November'), ('12','December')], 'Month', 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     }
58     _order = 'name desc, project_id'
59
60     def init(self, cr):
61         tools.sql.drop_view_if_exists(cr, 'report_project_task_user')
62         cr.execute("""
63             CREATE view report_project_task_user as
64               SELECT
65                     (select 1 ) AS nbr,
66                     t.id as id,
67                     to_char(date_start, 'YYYY') as year,
68                     to_char(date_start, 'MM') as month,
69                     to_char(date_start, 'YYYY-MM-DD') as day,
70                     date_trunc('day',t.date_start) as date_start,
71                     date_trunc('day',t.date_end) as date_end,
72                     to_date(to_char(t.date_deadline, 'dd-MM-YYYY'),'dd-MM-YYYY') as date_deadline,
73 --                    sum(cast(to_char(date_trunc('day',t.date_end) - date_trunc('day',t.date_start),'DD') as int)) as no_of_days,
74                     abs((extract('epoch' from (t.date_end-t.date_start)))/(3600*24))  as no_of_days,
75                     t.user_id,
76                     progress as progress,
77                     t.project_id,
78                     t.state,
79                     t.effective_hours as hours_effective,
80                     t.priority,
81                     t.name as name,
82                     t.company_id,
83                     t.partner_id,
84                     t.stage_id,
85                     remaining_hours as remaining_hours,
86                     total_hours as total_hours,
87                     t.delay_hours as hours_delay,
88                     planned_hours as hours_planned,
89                     (extract('epoch' from (t.date_end-t.create_date)))/(3600*24)  as closing_days,
90                     (extract('epoch' from (t.date_start-t.create_date)))/(3600*24)  as opening_days,
91                     abs((extract('epoch' from (t.date_deadline-t.date_end)))/(3600*24))  as delay_endings_days
92               FROM project_task t
93                 WHERE t.active = 'true'
94                 GROUP BY
95                     t.id,
96                     remaining_hours,
97                     t.effective_hours,
98                     progress,
99                     total_hours,
100                     planned_hours,
101                     hours_delay,
102                     year,
103                     month,
104                     day,
105                     create_date,
106                     date_start,
107                     date_end,
108                     date_deadline,
109                     t.user_id,
110                     t.project_id,
111                     t.state,
112                     t.priority,
113                     name,
114                     t.company_id,
115                     t.partner_id,
116                     t.stage_id
117
118         """)
119
120 report_project_task_user()
121