Browse Source

Fix filter values for fixed version id (#26667).

Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@16999 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.0.0
Jean-Philippe Lang 6 years ago
parent
commit
cb73fc58f2
2 changed files with 15 additions and 1 deletions
  1. 1
    1
      app/models/time_entry_query.rb
  2. 14
    0
      test/functional/queries_controller_test.rb

+ 1
- 1
app/models/time_entry_query.rb View File

@@ -64,7 +64,7 @@ class TimeEntryQuery < Query
add_available_filter("issue.fixed_version_id",
:type => :list,
:name => l("label_attribute_of_issue", :name => l(:field_fixed_version)),
:values => lambda { fixed_version_values }) if project
:values => lambda { fixed_version_values })

add_available_filter("user_id",
:type => :list_optional, :values => lambda { author_values }

+ 14
- 0
test/functional/queries_controller_test.rb View File

@@ -581,6 +581,20 @@ class QueriesControllerTest < Redmine::ControllerTest
assert_include ["eCookbook - 2.0", "3", "open"], json
end

def test_version_filter_time_entries_with_project_id_should_return_filter_values
@request.session[:user_id] = 2
get :filter, :params => {
:project_id => 1,
:type => 'TimeEntryQuery',
:name => 'issue.fixed_version_id'
}

assert_response :success
assert_equal 'application/json', response.content_type
json = ActiveSupport::JSON.decode(response.body)
assert_include ["eCookbook - 2.0", "3", "open"], json
end

def test_filter_without_project_id_should_return_filter_values
@request.session[:user_id] = 2
get :filter, :params => {

Loading…
Cancel
Save