Issue subject is not updated when you select another issue on time entry form (#24041).

git-svn-id: http://svn.redmine.org/redmine/trunk@15951 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2016-11-18 08:11:11 +00:00
parent 2b70d97705
commit 2544fe6e15
6 changed files with 23 additions and 16 deletions

View File

@@ -13,9 +13,9 @@
<% end %> <% end %>
<p> <p>
<%= f.text_field :issue_id, :size => 6 %> <%= f.text_field :issue_id, :size => 6 %>
<% if @time_entry.issue.try(:visible?) %> <span id="time_entry_issue">
<span id="time_entry_issue"><%= "#{@time_entry.issue.tracker.name} ##{@time_entry.issue.id}: #{@time_entry.issue.subject}" %></span> <%= link_to_issue(@time_entry.issue) if @time_entry.issue.try(:visible?) %>
<% end %> </span>
</p> </p>
<p><%= f.date_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %></p> <p><%= f.date_field :spent_on, :size => 10, :required => true %><%= calendar_for('time_entry_spent_on') %></p>
<p><%= f.text_field :hours, :size => 6, :required => true %></p> <p><%= f.text_field :hours, :size => 6, :required => true %></p>
@@ -28,22 +28,20 @@
</div> </div>
<%= javascript_tag do %> <%= javascript_tag do %>
<% if @time_entry.new_record? %>
$(document).ready(function(){ $(document).ready(function(){
$('#time_entry_project_id, #time_entry_issue_id').change(function(){ $('#time_entry_project_id, #time_entry_issue_id').change(function(){
$.ajax({ $.ajax({
url: '<%= escape_javascript new_time_entry_path(:format => 'js') %>', url: '<%= escape_javascript(@time_entry.new_record? ? new_time_entry_path(:format => 'js') : edit_time_entry_path(:format => 'js')) %>',
type: 'post', type: 'post',
data: $('#new_time_entry').serialize() data: $(this).closest('form').serialize()
}); });
}); });
}); });
<% end %>
observeAutocompleteField('time_entry_issue_id', '<%= escape_javascript auto_complete_issues_path(:project_id => @project, :scope => (@project ? nil : 'all'))%>', { observeAutocompleteField('time_entry_issue_id', '<%= escape_javascript auto_complete_issues_path(:project_id => @project, :scope => (@project ? nil : 'all'))%>', {
select: function(event, ui) { select: function(event, ui) {
$('#time_entry_issue').text(ui.item.label); $('#time_entry_issue').text('');
$('#time_entry_issue_id').blur(); $('#time_entry_issue_id').val(ui.item.value).change();
} }
}); });
<% end %> <% end %>

View File

@@ -0,0 +1 @@
$('#time_entry_issue').html('<%= escape_javascript link_to_issue(@time_entry.issue) if @time_entry.issue.try(:visible?) %>');

View File

@@ -1 +1,2 @@
$('#time_entry_activity_id').html('<%= escape_javascript options_for_select(activity_collection_for_select_options(@time_entry), @time_entry.activity_id) %>'); $('#time_entry_activity_id').html('<%= escape_javascript options_for_select(activity_collection_for_select_options(@time_entry), @time_entry.activity_id) %>');
$('#time_entry_issue').html('<%= escape_javascript link_to_issue(@time_entry.issue) if @time_entry.issue.try(:visible?) %>');

View File

@@ -215,6 +215,10 @@ Rails.application.routes.draw do
match '/time_entries/context_menu', :to => 'context_menus#time_entries', :as => :time_entries_context_menu, :via => [:get, :post] match '/time_entries/context_menu', :to => 'context_menus#time_entries', :as => :time_entries_context_menu, :via => [:get, :post]
resources :time_entries, :controller => 'timelog', :except => :destroy do resources :time_entries, :controller => 'timelog', :except => :destroy do
member do
# Used when updating the edit form of an existing time entry
patch 'edit', :to => 'timelog#edit'
end
collection do collection do
get 'report' get 'report'
get 'bulk_edit' get 'bulk_edit'

View File

@@ -35,6 +35,7 @@ class TimelogControllerTest < Redmine::ControllerTest
assert_select 'input[name=?][type=hidden]', 'project_id', 0 assert_select 'input[name=?][type=hidden]', 'project_id', 0
assert_select 'input[name=?][type=hidden]', 'issue_id', 0 assert_select 'input[name=?][type=hidden]', 'issue_id', 0
assert_select 'span[id=?]', 'time_entry_issue'
assert_select 'select[name=?]', 'time_entry[project_id]' do assert_select 'select[name=?]', 'time_entry[project_id]' do
# blank option for project # blank option for project
assert_select 'option[value=""]' assert_select 'option[value=""]'
@@ -58,6 +59,7 @@ class TimelogControllerTest < Redmine::ControllerTest
assert_select 'input[name=?][type=hidden]', 'project_id', 0 assert_select 'input[name=?][type=hidden]', 'project_id', 0
assert_select 'input[name=?][type=hidden]', 'issue_id' assert_select 'input[name=?][type=hidden]', 'issue_id'
assert_select 'a[href=?]', '/issues/2', :text => /Feature request #2/
assert_select 'select[name=?]', 'time_entry[project_id]', 0 assert_select 'select[name=?]', 'time_entry[project_id]', 0
end end
@@ -249,7 +251,7 @@ class TimelogControllerTest < Redmine::ControllerTest
end end
assert_select_error /Issue is invalid/ assert_select_error /Issue is invalid/
assert_select "input[name=?][value=?]", "time_entry[issue_id]", issue.id.to_s assert_select "input[name=?][value=?]", "time_entry[issue_id]", issue.id.to_s
assert_select "#time_entry_issue", 0 assert_select "#time_entry_issue a", 0
assert !response.body.include?('issue_that_is_not_visible') assert !response.body.include?('issue_that_is_not_visible')
end end
@@ -501,7 +503,7 @@ class TimelogControllerTest < Redmine::ControllerTest
assert_select 'form#bulk_edit_form[action=?]', '/time_entries/bulk_update' do assert_select 'form#bulk_edit_form[action=?]', '/time_entries/bulk_update' do
# System wide custom field # System wide custom field
assert_select 'select[name=?]', 'time_entry[custom_field_values][10]' assert_select 'select[name=?]', 'time_entry[custom_field_values][10]'
# Activities # Activities
assert_select 'select[name=?]', 'time_entry[activity_id]' do assert_select 'select[name=?]', 'time_entry[activity_id]' do
assert_select 'option[value=""]', :text => '(No change)' assert_select 'option[value=""]', :text => '(No change)'
@@ -549,7 +551,7 @@ class TimelogControllerTest < Redmine::ControllerTest
@request.session[:user_id] = 2 @request.session[:user_id] = 2
# makes user a manager on the other project # makes user a manager on the other project
Member.create!(:user_id => 2, :project_id => 3, :role_ids => [1]) Member.create!(:user_id => 2, :project_id => 3, :role_ids => [1])
# update time entry activity # update time entry activity
post :bulk_update, :params => {:ids => [1, 2, 4], :time_entry => { :activity_id => 9 }} post :bulk_update, :params => {:ids => [1, 2, 4], :time_entry => { :activity_id => 9 }}
@@ -677,9 +679,9 @@ class TimelogControllerTest < Redmine::ControllerTest
def test_index_at_project_level def test_index_at_project_level
get :index, :params => {:project_id => 'ecookbook', :c => ['project']} get :index, :params => {:project_id => 'ecookbook', :c => ['project']}
assert_response :success assert_response :success
assert_select 'tr.time-entry', 4 assert_select 'tr.time-entry', 4
# project and subproject # project and subproject
projects = css_select('table.time-entries tbody td.project').map(&:text).uniq.sort projects = css_select('table.time-entries tbody td.project').map(&:text).uniq.sort
assert_equal ["eCookbook", "eCookbook Subproject 1"], projects assert_equal ["eCookbook", "eCookbook Subproject 1"], projects
@@ -959,7 +961,7 @@ class TimelogControllerTest < Redmine::ControllerTest
def test_index_at_project_level_should_include_csv_export_dialog def test_index_at_project_level_should_include_csv_export_dialog
get :index, :params => { get :index, :params => {
:project_id => 'ecookbook', :project_id => 'ecookbook',
:f => ['spent_on'], :f => ['spent_on'],
:op => {'spent_on' => '>='}, :op => {'spent_on' => '>='},
:v => {'spent_on' => ['2007-04-01']}, :v => {'spent_on' => ['2007-04-01']},

View File

@@ -27,7 +27,8 @@ class RoutingTimelogsTest < Redmine::RoutingTest
should_route 'POST /time_entries' => 'timelog#create' should_route 'POST /time_entries' => 'timelog#create'
should_route 'GET /time_entries/22/edit' => 'timelog#edit', :id => '22' should_route 'GET /time_entries/22/edit' => 'timelog#edit', :id => '22'
should_route 'PUT /time_entries/22' => 'timelog#update', :id => '22' should_route 'PATCH /time_entries/22/edit' => 'timelog#edit', :id => '22'
should_route 'PATCH /time_entries/22' => 'timelog#update', :id => '22'
should_route 'DELETE /time_entries/22' => 'timelog#destroy', :id => '22' should_route 'DELETE /time_entries/22' => 'timelog#destroy', :id => '22'
end end