mirror of
https://github.com/redmine/redmine.git
synced 2025-11-16 18:26:02 +01:00
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:
@@ -415,6 +415,7 @@ class IssuesController < ApplicationController
|
|||||||
@copy_attachments = params[:copy_attachments].present? || request.get?
|
@copy_attachments = params[:copy_attachments].present? || request.get?
|
||||||
@copy_subtasks = params[:copy_subtasks].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.copy_from(@copy_from, :attachments => @copy_attachments, :subtasks => @copy_subtasks, :link => @link_copy)
|
||||||
|
@issue.parent_issue_id = @copy_from.parent_id
|
||||||
rescue ActiveRecord::RecordNotFound
|
rescue ActiveRecord::RecordNotFound
|
||||||
render_404
|
render_404
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -2775,6 +2775,14 @@ class IssuesControllerTest < ActionController::TestCase
|
|||||||
assert_select 'input[name=copy_attachments]', 0
|
assert_select 'input[name=copy_attachments]', 0
|
||||||
end
|
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
|
def test_new_as_copy_with_subtasks_should_show_copy_subtasks_checkbox
|
||||||
@request.session[:user_id] = 2
|
@request.session[:user_id] = 2
|
||||||
issue = Issue.generate_with_descendants!
|
issue = Issue.generate_with_descendants!
|
||||||
|
|||||||
Reference in New Issue
Block a user