diff --git a/addons/report_task/__init__.py b/addons/report_task/__init__.py new file mode 100644 index 00000000000..8b630253de9 --- /dev/null +++ b/addons/report_task/__init__.py @@ -0,0 +1,6 @@ +##################################################################### +#Created By : Eiffel Consultancy Pvt. Ltd. +#Created Date : 14/02/2007 +##################################################################### + +import report_task diff --git a/addons/report_task/__terp__.py b/addons/report_task/__terp__.py new file mode 100644 index 00000000000..56374309983 --- /dev/null +++ b/addons/report_task/__terp__.py @@ -0,0 +1,22 @@ +##################################################################### +#Created By : Eiffel Consultancy Pvt. Ltd. +#Created Date : 14/02/2007 +##################################################################### + + +{ + 'name' : 'Report on tasks by user for projects', + 'version' :'1.0', + 'author' : 'Tiny', + 'depends' : ['base','project'], + 'description': 'Gives statistics on tasks by user on projects to check the pipeline of users.', + 'init_xml' : [], + 'update_xml': [ + 'report_task_view.xml', + ], + 'active': True, + 'installable': True +} + + + diff --git a/addons/report_task/report_task.py b/addons/report_task/report_task.py new file mode 100644 index 00000000000..363f892e7c7 --- /dev/null +++ b/addons/report_task/report_task.py @@ -0,0 +1,65 @@ +############################################################################## +# +# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. +# +# $Id: project.py 1005 2005-07-25 08:41:42Z nicoe $ +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## + +from osv import fields,osv + +class report_task_user_pipeline_open (osv.osv): + _name = "report.task.user.pipeline.open" + _description = "Tasks by user and project" + _auto = False + _columns = { + 'user_id':fields.many2one('res.users', 'User', readonly=True, relate=True), + 'task_nbr': fields.float('Task Number', readonly=True), + 'task_hrs': fields.float('Task Hours', readonly=True), + 'task_progress': fields.float('Task Progress', readonly=True), + 'company_id' : fields.many2one('res.company', 'Company'), + 'task_state' : fields.char('Task State',size = '64' ,readonly=True), + } + + def init(self, cr): + cr.execute(""" + create or replace view report_task_user_pipeline_open as ( + select + u.id as id, + u.id as user_id, + u.company_id as company_id, + count(*) as task_nbr, + sum(planned_hours) as task_hrs, + sum(planned_hours*(100-progress)/100) as task_progress, + t.state as task_state + from + res_users u + full outer join project_task t on (u.id=t.user_id) + group by + u.id,u.company_id,t.state + ) + """) +report_task_user_pipeline_open() + + diff --git a/addons/report_task/report_task_view.xml b/addons/report_task/report_task_view.xml new file mode 100644 index 00000000000..4877581e54c --- /dev/null +++ b/addons/report_task/report_task_view.xml @@ -0,0 +1,69 @@ + + + + + # + # Tasks by projects and users + # + + + report.project.task.form + report.task.user.pipeline.open + form + +
+ + + + + + + + +
+ + + + report.project.task.tree + report.task.user.pipeline.open + tree + + + + + + + + + + + + + + report.project.task.tree + report.task.user.pipeline.open + form + tree,form + [] + + + + + report.project.task.tree + report.task.user.pipeline.open + form + tree,form + [('task_state','=','done')] + + + + + report.project.task.tree + report.task.user.pipeline.open + form + tree,form + [('task_state','=','open')] + + +
+