##// END OF EJS Templates
Format all floats with 2 decimals in the issue list (#13126)....
Jean-Philippe Lang -
r11120:cd04a041fe98
parent child
Show More
@@ -1,162 +1,160
1 1 # encoding: utf-8
2 2 #
3 3 # Redmine - project management software
4 4 # Copyright (C) 2006-2013 Jean-Philippe Lang
5 5 #
6 6 # This program is free software; you can redistribute it and/or
7 7 # modify it under the terms of the GNU General Public License
8 8 # as published by the Free Software Foundation; either version 2
9 9 # of the License, or (at your option) any later version.
10 10 #
11 11 # This program is distributed in the hope that it will be useful,
12 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 14 # GNU General Public License for more details.
15 15 #
16 16 # You should have received a copy of the GNU General Public License
17 17 # along with this program; if not, write to the Free Software
18 18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 19
20 20 module QueriesHelper
21 21 def filters_options_for_select(query)
22 22 options_for_select(filters_options(query))
23 23 end
24 24
25 25 def filters_options(query)
26 26 options = [[]]
27 27 sorted_options = query.available_filters.sort do |a, b|
28 28 ord = 0
29 29 if !(a[1][:order] == 20 && b[1][:order] == 20)
30 30 ord = a[1][:order] <=> b[1][:order]
31 31 else
32 32 cn = (CustomField::CUSTOM_FIELDS_NAMES.index(a[1][:field].class.name) <=>
33 33 CustomField::CUSTOM_FIELDS_NAMES.index(b[1][:field].class.name))
34 34 if cn != 0
35 35 ord = cn
36 36 else
37 37 f = (a[1][:field] <=> b[1][:field])
38 38 if f != 0
39 39 ord = f
40 40 else
41 41 # assigned_to or author
42 42 ord = (a[0] <=> b[0])
43 43 end
44 44 end
45 45 end
46 46 ord
47 47 end
48 48 options += sorted_options.map do |field, field_options|
49 49 [field_options[:name], field]
50 50 end
51 51 end
52 52
53 53 def available_block_columns_tags(query)
54 54 tags = ''.html_safe
55 55 query.available_block_columns.each do |column|
56 56 tags << content_tag('label', check_box_tag('c[]', column.name.to_s, query.has_column?(column)) + " #{column.caption}", :class => 'inline')
57 57 end
58 58 tags
59 59 end
60 60
61 61 def column_header(column)
62 62 column.sortable ? sort_header_tag(column.name.to_s, :caption => column.caption,
63 63 :default_order => column.default_order) :
64 64 content_tag('th', h(column.caption))
65 65 end
66 66
67 67 def column_content(column, issue)
68 68 value = column.value(issue)
69 69 if value.is_a?(Array)
70 70 value.collect {|v| column_value(column, issue, v)}.compact.join(', ').html_safe
71 71 else
72 72 column_value(column, issue, value)
73 73 end
74 74 end
75 75
76 76 def column_value(column, issue, value)
77 77 case value.class.name
78 78 when 'String'
79 79 if column.name == :subject
80 80 link_to(h(value), :controller => 'issues', :action => 'show', :id => issue)
81 81 elsif column.name == :description
82 82 issue.description? ? content_tag('div', textilizable(issue, :description), :class => "wiki") : ''
83 83 else
84 84 h(value)
85 85 end
86 86 when 'Time'
87 87 format_time(value)
88 88 when 'Date'
89 89 format_date(value)
90 when 'Fixnum', 'Float'
90 when 'Fixnum'
91 91 if column.name == :done_ratio
92 92 progress_bar(value, :width => '80px')
93 elsif column.name == :spent_hours
94 sprintf "%.2f", value
95 elsif column.name == :hours
96 html_hours("%.2f" % value)
97 93 else
98 h(value.to_s)
94 value.to_s
99 95 end
96 when 'Float'
97 sprintf "%.2f", value
100 98 when 'User'
101 99 link_to_user value
102 100 when 'Project'
103 101 link_to_project value
104 102 when 'Version'
105 103 link_to(h(value), :controller => 'versions', :action => 'show', :id => value)
106 104 when 'TrueClass'
107 105 l(:general_text_Yes)
108 106 when 'FalseClass'
109 107 l(:general_text_No)
110 108 when 'Issue'
111 109 value.visible? ? link_to_issue(value) : "##{value.id}"
112 110 when 'IssueRelation'
113 111 other = value.other_issue(issue)
114 112 content_tag('span',
115 113 (l(value.label_for(issue)) + " " + link_to_issue(other, :subject => false, :tracker => false)).html_safe,
116 114 :class => value.css_classes_for(issue))
117 115 else
118 116 h(value)
119 117 end
120 118 end
121 119
122 120 # Retrieve query from session or build a new query
123 121 def retrieve_query
124 122 if !params[:query_id].blank?
125 123 cond = "project_id IS NULL"
126 124 cond << " OR project_id = #{@project.id}" if @project
127 125 @query = IssueQuery.find(params[:query_id], :conditions => cond)
128 126 raise ::Unauthorized unless @query.visible?
129 127 @query.project = @project
130 128 session[:query] = {:id => @query.id, :project_id => @query.project_id}
131 129 sort_clear
132 130 elsif api_request? || params[:set_filter] || session[:query].nil? || session[:query][:project_id] != (@project ? @project.id : nil)
133 131 # Give it a name, required to be valid
134 132 @query = IssueQuery.new(:name => "_")
135 133 @query.project = @project
136 134 @query.build_from_params(params)
137 135 session[:query] = {:project_id => @query.project_id, :filters => @query.filters, :group_by => @query.group_by, :column_names => @query.column_names}
138 136 else
139 137 # retrieve from session
140 138 @query = IssueQuery.find_by_id(session[:query][:id]) if session[:query][:id]
141 139 @query ||= IssueQuery.new(:name => "_", :filters => session[:query][:filters], :group_by => session[:query][:group_by], :column_names => session[:query][:column_names])
142 140 @query.project = @project
143 141 end
144 142 end
145 143
146 144 def retrieve_query_from_session
147 145 if session[:query]
148 146 if session[:query][:id]
149 147 @query = IssueQuery.find_by_id(session[:query][:id])
150 148 return unless @query
151 149 else
152 150 @query = IssueQuery.new(:name => "_", :filters => session[:query][:filters], :group_by => session[:query][:group_by], :column_names => session[:query][:column_names])
153 151 end
154 152 if session[:query].has_key?(:project_id)
155 153 @query.project_id = session[:query][:project_id]
156 154 else
157 155 @query.project = @project
158 156 end
159 157 @query
160 158 end
161 159 end
162 160 end
General Comments 0
You need to be logged in to leave comments. Login now