From: Etienne Massip Date: Mon, 26 Sep 2011 17:44:20 +0000 (+0000) Subject: Allow project column to be removed from the global issue list columns (#8411). X-Git-Tag: 1.3.0~437 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=98e18b2141d351c37dcd2c643b1623157c4d7ea6;p=redmine.git Allow project column to be removed from the global issue list columns (#8411). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7538 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/query.rb b/app/models/query.rb index 7bf0b0d2f..b717ecbc2 100644 --- a/app/models/query.rb +++ b/app/models/query.rb @@ -378,14 +378,17 @@ class Query < ActiveRecord::Base end def columns - if has_default_columns? - available_columns.select do |c| - # Adds the project column by default for cross-project lists - Setting.issue_list_default_columns.include?(c.name.to_s) || (c.name == :project && project.nil?) - end - else - # preserve the column_names order - column_names.collect {|name| available_columns.find {|col| col.name == name}}.compact + # preserve the column_names order + (has_default_columns? ? default_columns_names : column_names).collect do |name| + available_columns.find { |col| col.name == name } + end.compact + end + + def default_columns_names + @default_columns_names ||= begin + default_columns = Setting.issue_list_default_columns.map(&:to_sym) + + project.present? ? default_columns : [:project] | default_columns end end @@ -394,7 +397,7 @@ class Query < ActiveRecord::Base names = names.select {|n| n.is_a?(Symbol) || !n.blank? } names = names.collect {|n| n.is_a?(Symbol) ? n : n.to_sym } # Set column_names to nil if default columns - if names.map(&:to_s) == Setting.issue_list_default_columns + if names == default_columns_names names = nil end end diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 3fde8cdaa..1b79cc1c1 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -285,6 +285,27 @@ class IssuesControllerTest < ActionController::TestCase :parent => { :tag => 'select', :attributes => { :id => "selected_columns" } } end + def test_index_without_project_should_implicitly_add_project_column_to_default_columns + Setting.issue_list_default_columns = ['tracker', 'subject', 'assigned_to'] + get :index, :set_filter => 1 + + # query should use specified columns + query = assigns(:query) + assert_kind_of Query, query + assert_equal [:project, :tracker, :subject, :assigned_to], query.columns.map(&:name) + end + + def test_index_without_project_and_explicit_default_columns_should_not_add_project_column + Setting.issue_list_default_columns = ['tracker', 'subject', 'assigned_to'] + columns = ['tracker', 'subject', 'assigned_to'] + get :index, :set_filter => 1, :c => columns + + # query should use specified columns + query = assigns(:query) + assert_kind_of Query, query + assert_equal columns.map(&:to_sym), query.columns.map(&:name) + end + def test_index_with_custom_field_column columns = %w(tracker subject cf_2) get :index, :set_filter => 1, :c => columns