Patch #24692
closedIssue destroy : Reassign time issue autocomplete
0%
Description
When deleting an issue, you get a form to propose you where to reassign the time entries. This patch provides an autocomplete instead of entering the raw issue ID.
Patch tested and fully working for Redmine 3.3.1-devel
Files
Updated by Anonymous almost 8 years ago
- Status changed from New to Resolved
Pull request on GitHub : https://github.com/redmine/redmine/pull/91
Updated by Anonymous almost 8 years ago
Sorry bad title, supposed to be : "Issue destroy : Reassign time issue autocomplete"
Updated by Go MAEDA almost 8 years ago
- Subject changed from Issue destroy : Also reassign descendants spent hours to Issue destroy : Reassign time issue autocomplete
- Status changed from Resolved to New
Updated by Go MAEDA almost 8 years ago
- Status changed from New to Needs feedback
Thank you for submitting the patch.
Reassigning destination issue must be an issue within the same project (please see the code in IssuesController#destroy: source:trunk/app/controllers/issues_controller.rb@15923#L354 ). Therefore the auto completing should not suggest issues in other project.
I am not sure, but I think the key-value pair :scope => Setting.cross_project_subtasks
in the arguments of escape_javascript auto_complete_issues_path
should be removed.
Updated by Go MAEDA almost 8 years ago
- File issue-destroy-reassign-time-autocomplete-v2.patch issue-destroy-reassign-time-autocomplete-v2.patch added
- Status changed from Needs feedback to New
- Target version set to Candidate for next major release
Go MAEDA wrote:
Reassigning destination issue must be an issue within the same project (please see the code in IssuesController#destroy: source:trunk/app/controllers/issues_controller.rb@15923#L354 ). Therefore the auto completing should not suggest issues in other project.
Fixed. Updated the patch.
Updated by Go MAEDA almost 8 years ago
- Target version changed from Candidate for next major release to 3.4.0
Updated by Jean-Philippe Lang almost 8 years ago
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
Committed with slight changes. I removed the wrapping span, let me know if it was of any use.