From 79b12c73d9acd43f53918d23a9f3d94a516632b5 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 29 Jan 2012 22:01:40 +0000 Subject: [PATCH] Display of multi custom fields. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8726 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/custom_fields_helper.rb | 2 +- app/helpers/issues_helper.rb | 2 +- app/helpers/timelog_helper.rb | 2 +- app/views/versions/_overview.html.erb | 2 +- lib/redmine/export/pdf.rb | 2 +- test/functional/issues_controller_test.rb | 14 +++++++++++++- test/functional/timelog_controller_test.rb | 12 ++++++++++++ 7 files changed, 30 insertions(+), 6 deletions(-) diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb index 639af95fb..7d1368fa8 100644 --- a/app/helpers/custom_fields_helper.rb +++ b/app/helpers/custom_fields_helper.rb @@ -117,7 +117,7 @@ module CustomFieldsHelper # Return a string used to display a custom value def format_value(value, field_format) if value.is_a?(Array) - value.collect {|v| format_value(v, field_format)}.join(', ') + value.collect {|v| format_value(v, field_format)}.compact.sort.join(', ') else Redmine::CustomFieldFormat.format_value(value, field_format) end diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 0b33d48fb..b061840fb 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -320,7 +320,7 @@ module IssuesHelper issues.each do |issue| col_values = columns.collect do |column| s = if column.is_a?(QueryCustomFieldColumn) - cv = issue.custom_values.detect {|v| v.custom_field_id == column.custom_field.id} + cv = issue.custom_field_values.detect {|v| v.custom_field_id == column.custom_field.id} show_value(cv) else value = issue.send(column.name) diff --git a/app/helpers/timelog_helper.rb b/app/helpers/timelog_helper.rb index e3c7615b2..e27425acb 100644 --- a/app/helpers/timelog_helper.rb +++ b/app/helpers/timelog_helper.rb @@ -118,7 +118,7 @@ module TimelogHelper entry.hours.to_s.gsub('.', decimal_separator), entry.comments ] - fields += custom_fields.collect {|f| show_value(entry.custom_value_for(f)) } + fields += custom_fields.collect {|f| show_value(entry.custom_field_values.detect {|v| v.custom_field_id == f.id}) } csv << fields.collect {|c| Redmine::CodesetUtil.from_utf8( c.to_s, diff --git a/app/views/versions/_overview.html.erb b/app/views/versions/_overview.html.erb index aea77af12..a57241158 100644 --- a/app/views/versions/_overview.html.erb +++ b/app/views/versions/_overview.html.erb @@ -5,7 +5,7 @@ <% end %>

<%=h version.description %>

-<% if version.custom_values.any? %> +<% if version.custom_field_values.any? %>