@@ -1,47 +1,46 | |||
|
1 | 1 | # Redmine - project management software |
|
2 | 2 | # Copyright (C) 2006-2011 Jean-Philippe Lang |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | module VersionsHelper |
|
19 | 19 | |
|
20 | 20 | STATUS_BY_CRITERIAS = %w(category tracker status priority author assigned_to) |
|
21 | 21 | |
|
22 | 22 | def render_issue_status_by(version, criteria) |
|
23 | criteria ||= 'category' | |
|
24 | raise 'Unknown criteria' unless STATUS_BY_CRITERIAS.include?(criteria) | |
|
23 | criteria = 'category' unless STATUS_BY_CRITERIAS.include?(criteria) | |
|
25 | 24 | |
|
26 | 25 | h = Hash.new {|k,v| k[v] = [0, 0]} |
|
27 | 26 | begin |
|
28 | 27 | # Total issue count |
|
29 | 28 | Issue.count(:group => criteria, |
|
30 | 29 | :conditions => ["#{Issue.table_name}.fixed_version_id = ?", version.id]).each {|c,s| h[c][0] = s} |
|
31 | 30 | # Open issues count |
|
32 | 31 | Issue.count(:group => criteria, |
|
33 | 32 | :include => :status, |
|
34 | 33 | :conditions => ["#{Issue.table_name}.fixed_version_id = ? AND #{IssueStatus.table_name}.is_closed = ?", version.id, false]).each {|c,s| h[c][1] = s} |
|
35 | 34 | rescue ActiveRecord::RecordNotFound |
|
36 | 35 | # When grouping by an association, Rails throws this exception if there's no result (bug) |
|
37 | 36 | end |
|
38 | 37 | counts = h.keys.compact.sort.collect {|k| {:group => k, :total => h[k][0], :open => h[k][1], :closed => (h[k][0] - h[k][1])}} |
|
39 | 38 | max = counts.collect {|c| c[:total]}.max |
|
40 | 39 | |
|
41 | 40 | render :partial => 'issue_counts', :locals => {:version => version, :criteria => criteria, :counts => counts, :max => max} |
|
42 | 41 | end |
|
43 | 42 | |
|
44 | 43 | def status_by_options_for_select(value) |
|
45 | 44 | options_for_select(STATUS_BY_CRITERIAS.collect {|criteria| [l("field_#{criteria}".to_sym), criteria]}, value) |
|
46 | 45 | end |
|
47 | 46 | end |
General Comments 0
You need to be logged in to leave comments.
Login now