| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  | # redMine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006  Jean-Philippe Lang | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ReportsController < ApplicationController | 
					
						
							| 
									
										
										
										
											2008-01-19 11:53:43 +00:00
										 |  |  |   menu_item :issues | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   before_filter :find_project, :authorize | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def issue_report | 
					
						
							|  |  |  |     @statuses = IssueStatus.find(:all, :order => 'position') | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     case params[:detail] | 
					
						
							|  |  |  |     when "tracker" | 
					
						
							|  |  |  |       @field = "tracker_id" | 
					
						
							| 
									
										
										
										
											2007-11-20 20:29:03 +00:00
										 |  |  |       @rows = @project.trackers | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       @data = issues_by_tracker | 
					
						
							|  |  |  |       @report_title = l(:field_tracker) | 
					
						
							|  |  |  |       render :template => "reports/issue_report_details" | 
					
						
							| 
									
										
										
										
											2007-05-26 16:06:02 +00:00
										 |  |  |     when "version" | 
					
						
							|  |  |  |       @field = "fixed_version_id" | 
					
						
							| 
									
										
										
										
											2009-12-18 14:59:19 +00:00
										 |  |  |       @rows = @project.shared_versions.sort | 
					
						
							| 
									
										
										
										
											2007-05-26 16:06:02 +00:00
										 |  |  |       @data = issues_by_version | 
					
						
							|  |  |  |       @report_title = l(:field_version) | 
					
						
							|  |  |  |       render :template => "reports/issue_report_details" | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     when "priority" | 
					
						
							|  |  |  |       @field = "priority_id" | 
					
						
							| 
									
										
										
										
											2009-05-30 23:30:36 +00:00
										 |  |  |       @rows = IssuePriority.all | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       @data = issues_by_priority | 
					
						
							|  |  |  |       @report_title = l(:field_priority) | 
					
						
							|  |  |  |       render :template => "reports/issue_report_details"    | 
					
						
							|  |  |  |     when "category" | 
					
						
							|  |  |  |       @field = "category_id" | 
					
						
							|  |  |  |       @rows = @project.issue_categories | 
					
						
							|  |  |  |       @data = issues_by_category | 
					
						
							|  |  |  |       @report_title = l(:field_category) | 
					
						
							|  |  |  |       render :template => "reports/issue_report_details"    | 
					
						
							| 
									
										
										
										
											2008-01-10 19:20:36 +00:00
										 |  |  |     when "assigned_to" | 
					
						
							|  |  |  |       @field = "assigned_to_id" | 
					
						
							| 
									
										
										
										
											2010-01-17 11:07:53 +00:00
										 |  |  |       @rows = @project.members.collect { |m| m.user }.sort | 
					
						
							| 
									
										
										
										
											2008-01-10 19:20:36 +00:00
										 |  |  |       @data = issues_by_assigned_to | 
					
						
							|  |  |  |       @report_title = l(:field_assigned_to) | 
					
						
							|  |  |  |       render :template => "reports/issue_report_details" | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     when "author" | 
					
						
							|  |  |  |       @field = "author_id" | 
					
						
							| 
									
										
										
										
											2010-01-17 11:07:53 +00:00
										 |  |  |       @rows = @project.members.collect { |m| m.user }.sort | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       @data = issues_by_author | 
					
						
							|  |  |  |       @report_title = l(:field_author) | 
					
						
							|  |  |  |       render :template => "reports/issue_report_details"   | 
					
						
							| 
									
										
										
										
											2007-04-03 19:48:49 +00:00
										 |  |  |     when "subproject" | 
					
						
							|  |  |  |       @field = "project_id" | 
					
						
							| 
									
										
										
										
											2009-01-24 11:31:15 +00:00
										 |  |  |       @rows = @project.descendants.active | 
					
						
							| 
									
										
										
										
											2007-04-03 19:48:49 +00:00
										 |  |  |       @data = issues_by_subproject | 
					
						
							|  |  |  |       @report_title = l(:field_subproject) | 
					
						
							|  |  |  |       render :template => "reports/issue_report_details"   | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2007-11-20 20:29:03 +00:00
										 |  |  |       @trackers = @project.trackers | 
					
						
							| 
									
										
										
										
											2009-12-18 14:59:19 +00:00
										 |  |  |       @versions = @project.shared_versions.sort | 
					
						
							| 
									
										
										
										
											2009-05-30 23:30:36 +00:00
										 |  |  |       @priorities = IssuePriority.all | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       @categories = @project.issue_categories | 
					
						
							| 
									
										
										
										
											2010-01-17 11:07:53 +00:00
										 |  |  |       @assignees = @project.members.collect { |m| m.user }.sort | 
					
						
							|  |  |  |       @authors = @project.members.collect { |m| m.user }.sort | 
					
						
							| 
									
										
										
										
											2009-01-24 11:31:15 +00:00
										 |  |  |       @subprojects = @project.descendants.active | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       issues_by_tracker | 
					
						
							| 
									
										
										
										
											2007-05-26 16:06:02 +00:00
										 |  |  |       issues_by_version | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       issues_by_priority | 
					
						
							|  |  |  |       issues_by_category | 
					
						
							| 
									
										
										
										
											2008-01-10 19:20:36 +00:00
										 |  |  |       issues_by_assigned_to | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       issues_by_author | 
					
						
							| 
									
										
										
										
											2007-04-03 19:48:49 +00:00
										 |  |  |       issues_by_subproject | 
					
						
							| 
									
										
										
										
											2007-09-22 13:17:49 +00:00
										 |  |  |        | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       render :template => "reports/issue_report" | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end   | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  | private | 
					
						
							|  |  |  |   # Find project of id params[:id] | 
					
						
							|  |  |  |   def find_project | 
					
						
							|  |  |  |     @project = Project.find(params[:id])		 | 
					
						
							|  |  |  |   rescue ActiveRecord::RecordNotFound | 
					
						
							|  |  |  |     render_404 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def issues_by_tracker | 
					
						
							|  |  |  |     @issues_by_tracker ||=  | 
					
						
							|  |  |  |         ActiveRecord::Base.connection.select_all("select    s.id as status_id, 
 | 
					
						
							|  |  |  |                                                   s.is_closed as closed,  | 
					
						
							|  |  |  |                                                   t.id as tracker_id, | 
					
						
							|  |  |  |                                                   count(i.id) as total  | 
					
						
							|  |  |  |                                                 from  | 
					
						
							| 
									
										
										
										
											2007-03-15 22:11:02 +00:00
										 |  |  |                                                   #{Issue.table_name} i, #{IssueStatus.table_name} s, #{Tracker.table_name} t | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |                                                 where  | 
					
						
							|  |  |  |                                                   i.status_id=s.id  | 
					
						
							|  |  |  |                                                   and i.tracker_id=t.id | 
					
						
							|  |  |  |                                                   and i.project_id=#{@project.id} | 
					
						
							|  |  |  |                                                 group by s.id, s.is_closed, t.id")	
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-05-26 16:06:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def issues_by_version | 
					
						
							|  |  |  |     @issues_by_version ||=  | 
					
						
							|  |  |  |         ActiveRecord::Base.connection.select_all("select    s.id as status_id, 
 | 
					
						
							|  |  |  |                                                   s.is_closed as closed,  | 
					
						
							|  |  |  |                                                   v.id as fixed_version_id, | 
					
						
							|  |  |  |                                                   count(i.id) as total  | 
					
						
							|  |  |  |                                                 from  | 
					
						
							|  |  |  |                                                   #{Issue.table_name} i, #{IssueStatus.table_name} s, #{Version.table_name} v | 
					
						
							|  |  |  |                                                 where  | 
					
						
							|  |  |  |                                                   i.status_id=s.id  | 
					
						
							|  |  |  |                                                   and i.fixed_version_id=v.id | 
					
						
							|  |  |  |                                                   and i.project_id=#{@project.id} | 
					
						
							|  |  |  |                                                 group by s.id, s.is_closed, v.id")	
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |   	 | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   def issues_by_priority     | 
					
						
							|  |  |  |     @issues_by_priority ||=  | 
					
						
							|  |  |  |       ActiveRecord::Base.connection.select_all("select    s.id as status_id, 
 | 
					
						
							|  |  |  |                                                   s.is_closed as closed,  | 
					
						
							|  |  |  |                                                   p.id as priority_id, | 
					
						
							|  |  |  |                                                   count(i.id) as total  | 
					
						
							|  |  |  |                                                 from  | 
					
						
							| 
									
										
										
										
											2009-05-30 23:30:36 +00:00
										 |  |  |                                                   #{Issue.table_name} i, #{IssueStatus.table_name} s, #{IssuePriority.table_name} p | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |                                                 where  | 
					
						
							|  |  |  |                                                   i.status_id=s.id  | 
					
						
							|  |  |  |                                                   and i.priority_id=p.id | 
					
						
							|  |  |  |                                                   and i.project_id=#{@project.id} | 
					
						
							|  |  |  |                                                 group by s.id, s.is_closed, p.id")	
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  |   def issues_by_category    | 
					
						
							|  |  |  |     @issues_by_category ||=  | 
					
						
							|  |  |  |       ActiveRecord::Base.connection.select_all("select    s.id as status_id, 
 | 
					
						
							|  |  |  |                                                   s.is_closed as closed,  | 
					
						
							|  |  |  |                                                   c.id as category_id, | 
					
						
							|  |  |  |                                                   count(i.id) as total  | 
					
						
							|  |  |  |                                                 from  | 
					
						
							| 
									
										
										
										
											2007-03-15 22:11:02 +00:00
										 |  |  |                                                   #{Issue.table_name} i, #{IssueStatus.table_name} s, #{IssueCategory.table_name} c | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |                                                 where  | 
					
						
							|  |  |  |                                                   i.status_id=s.id  | 
					
						
							|  |  |  |                                                   and i.category_id=c.id | 
					
						
							|  |  |  |                                                   and i.project_id=#{@project.id} | 
					
						
							|  |  |  |                                                 group by s.id, s.is_closed, c.id")	
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-01-10 19:20:36 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def issues_by_assigned_to | 
					
						
							|  |  |  |     @issues_by_assigned_to ||=  | 
					
						
							|  |  |  |       ActiveRecord::Base.connection.select_all("select    s.id as status_id, 
 | 
					
						
							|  |  |  |                                                   s.is_closed as closed,  | 
					
						
							|  |  |  |                                                   a.id as assigned_to_id, | 
					
						
							|  |  |  |                                                   count(i.id) as total  | 
					
						
							|  |  |  |                                                 from  | 
					
						
							|  |  |  |                                                   #{Issue.table_name} i, #{IssueStatus.table_name} s, #{User.table_name} a | 
					
						
							|  |  |  |                                                 where  | 
					
						
							|  |  |  |                                                   i.status_id=s.id  | 
					
						
							|  |  |  |                                                   and i.assigned_to_id=a.id | 
					
						
							|  |  |  |                                                   and i.project_id=#{@project.id} | 
					
						
							|  |  |  |                                                 group by s.id, s.is_closed, a.id")
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   def issues_by_author | 
					
						
							|  |  |  |     @issues_by_author ||=  | 
					
						
							|  |  |  |       ActiveRecord::Base.connection.select_all("select    s.id as status_id, 
 | 
					
						
							|  |  |  |                                                   s.is_closed as closed,  | 
					
						
							|  |  |  |                                                   a.id as author_id, | 
					
						
							|  |  |  |                                                   count(i.id) as total  | 
					
						
							|  |  |  |                                                 from  | 
					
						
							| 
									
										
										
										
											2007-03-15 22:11:02 +00:00
										 |  |  |                                                   #{Issue.table_name} i, #{IssueStatus.table_name} s, #{User.table_name} a | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |                                                 where  | 
					
						
							|  |  |  |                                                   i.status_id=s.id  | 
					
						
							|  |  |  |                                                   and i.author_id=a.id | 
					
						
							|  |  |  |                                                   and i.project_id=#{@project.id} | 
					
						
							|  |  |  |                                                 group by s.id, s.is_closed, a.id")	
 | 
					
						
							| 
									
										
										
										
											2007-01-28 00:00:21 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-04-03 19:48:49 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def issues_by_subproject | 
					
						
							|  |  |  |     @issues_by_subproject ||=  | 
					
						
							|  |  |  |       ActiveRecord::Base.connection.select_all("select    s.id as status_id, 
 | 
					
						
							|  |  |  |                                                   s.is_closed as closed,  | 
					
						
							|  |  |  |                                                   i.project_id as project_id, | 
					
						
							|  |  |  |                                                   count(i.id) as total  | 
					
						
							|  |  |  |                                                 from  | 
					
						
							|  |  |  |                                                   #{Issue.table_name} i, #{IssueStatus.table_name} s | 
					
						
							|  |  |  |                                                 where  | 
					
						
							|  |  |  |                                                   i.status_id=s.id  | 
					
						
							| 
									
										
										
										
											2009-01-24 11:31:15 +00:00
										 |  |  |                                                   and i.project_id IN (#{@project.descendants.active.collect{|p| p.id}.join(',')}) | 
					
						
							|  |  |  |                                                 group by s.id, s.is_closed, i.project_id") if @project.descendants.active.any?
 | 
					
						
							| 
									
										
										
										
											2007-04-03 19:48:49 +00:00
										 |  |  |     @issues_by_subproject ||= [] | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | end |