Copying an issue does not copy parent task id (#12893).

git-svn-id: http://svn.redmine.org/redmine/trunk@15058 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2016-01-10 15:47:52 +00:00
parent 300e5e4652
commit ea635ece05
2 changed files with 9 additions and 0 deletions

View File

@@ -415,6 +415,7 @@ class IssuesController < ApplicationController
@copy_attachments = params[:copy_attachments].present? || request.get?
@copy_subtasks = params[:copy_subtasks].present? || request.get?
@issue.copy_from(@copy_from, :attachments => @copy_attachments, :subtasks => @copy_subtasks, :link => @link_copy)
@issue.parent_issue_id = @copy_from.parent_id
rescue ActiveRecord::RecordNotFound
render_404
return

View File

@@ -2775,6 +2775,14 @@ class IssuesControllerTest < ActionController::TestCase
assert_select 'input[name=copy_attachments]', 0
end
def test_new_as_copy_should_preserve_parent_id
@request.session[:user_id] = 2
issue = Issue.generate!(:parent_issue_id => 2)
get :new, :project_id => 1, :copy_from => issue.id
assert_select 'input[name=?][value="2"]', 'issue[parent_issue_id]'
end
def test_new_as_copy_with_subtasks_should_show_copy_subtasks_checkbox
@request.session[:user_id] = 2
issue = Issue.generate_with_descendants!