summaryrefslogtreecommitdiffstats
path: root/app/controllers/reports_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/reports_controller.rb')
-rw-r--r--app/controllers/reports_controller.rb90
1 files changed, 7 insertions, 83 deletions
diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb
index 804bdd32f..e8acdc661 100644
--- a/app/controllers/reports_controller.rb
+++ b/app/controllers/reports_controller.rb
@@ -94,107 +94,31 @@ private
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
- #{Issue.table_name} i, #{IssueStatus.table_name} s, #{Tracker.table_name} t
- 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")
+ @issues_by_tracker ||= Issue.by_tracker(@project)
end
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")
+ @issues_by_version ||= Issue.by_version(@project)
end
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
- #{Issue.table_name} i, #{IssueStatus.table_name} s, #{IssuePriority.table_name} p
- 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")
+ @issues_by_priority ||= Issue.by_priority(@project)
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
- #{Issue.table_name} i, #{IssueStatus.table_name} s, #{IssueCategory.table_name} c
- 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")
+ @issues_by_category ||= Issue.by_category(@project)
end
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")
+ @issues_by_assigned_to ||= Issue.by_assigned_to(@project)
end
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
- #{Issue.table_name} i, #{IssueStatus.table_name} s, #{User.table_name} a
- 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")
+ @issues_by_author ||= Issue.by_author(@project)
end
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
- 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?
+ @issues_by_subproject ||= Issue.by_subproject(@project)
@issues_by_subproject ||= []
end
end