]> source.dussan.org Git - redmine.git/commitdiff
Merged r19501 from trunk to 4.1-stable (#32959).
authorGo MAEDA <maeda@farend.jp>
Sun, 9 Feb 2020 00:27:15 +0000 (00:27 +0000)
committerGo MAEDA <maeda@farend.jp>
Sun, 9 Feb 2020 00:27:15 +0000 (00:27 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19502 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/timelog_helper.rb
test/functional/timelog_controller_test.rb

index 2c3e500a54bd829e8c7c8332323decffbac6641b..d10b57332395f298d5980d2ab0f912fb2a7721cc 100644 (file)
@@ -44,7 +44,7 @@ module TimelogHelper
 
   def user_collection_for_select_options(time_entry)
     collection = time_entry.assignable_users
-    principals_options_for_select(collection, time_entry.user_id)
+    principals_options_for_select(collection, time_entry.user_id.to_s)
   end
 
   def select_hours(data, criteria, value)
index f23c9601d3dce64add4ff793270626bbf6a7efc6..2dd0d9e000657cb4f678a25aa726477b6f31853e 100644 (file)
@@ -1433,4 +1433,19 @@ class TimelogControllerTest < Redmine::ControllerTest
     assert_response :success
     assert_select "td.issue_cf_#{field.id}", :text => 'This is a long text'
   end
+
+  def test_edit_for_other_user
+    Role.find_by_name('Manager').add_permission! :log_time_for_other_users
+    @request.session[:user_id] = 2
+
+    get :edit, :params => {
+      :id => 1
+    }
+
+    assert_response :success
+
+    assert_select 'select[name=?]', 'time_entry[user_id]' do
+      assert_select 'option[value="2"][selected=selected]'
+    end
+  end
 end