2012-01-07 17:27:47 +00:00
|
|
|
<h2><%= @copy ? l(:button_copy) : l(:label_bulk_edit_selected_issues) %></h2>
|
2007-10-09 19:07:19 +00:00
|
|
|
|
2013-05-04 08:52:51 +00:00
|
|
|
<% if @saved_issues && @unsaved_issues.present? %>
|
|
|
|
|
<div id="errorExplanation">
|
2025-03-26 21:08:50 +00:00
|
|
|
<%= notice_icon('error') %>
|
2013-05-04 08:52:51 +00:00
|
|
|
<span>
|
|
|
|
|
<%= l(:notice_failed_to_save_issues,
|
|
|
|
|
:count => @unsaved_issues.size,
|
|
|
|
|
:total => @saved_issues.size,
|
|
|
|
|
:ids => @unsaved_issues.map {|i| "##{i.id}"}.join(', ')) %>
|
|
|
|
|
</span>
|
|
|
|
|
<ul>
|
|
|
|
|
<% bulk_edit_error_messages(@unsaved_issues).each do |message| %>
|
|
|
|
|
<li><%= message %></li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2012-12-22 12:24:43 +00:00
|
|
|
<ul id="bulk-selection">
|
2012-12-22 10:57:01 +00:00
|
|
|
<% @issues.each do |issue| %>
|
|
|
|
|
<%= content_tag 'li', link_to_issue(issue) %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
2008-02-10 13:17:41 +00:00
|
|
|
|
2012-12-22 12:24:43 +00:00
|
|
|
<%= form_tag(bulk_update_issues_path, :id => 'bulk_edit_form') do %>
|
2014-11-23 13:45:24 +00:00
|
|
|
<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join("\n").html_safe %>
|
2010-01-03 11:37:04 +00:00
|
|
|
<div class="box tabular">
|
2010-02-23 21:44:28 +00:00
|
|
|
<fieldset class="attributes">
|
2008-02-10 13:17:41 +00:00
|
|
|
<legend><%= l(:label_change_properties) %></legend>
|
2010-01-03 11:37:04 +00:00
|
|
|
|
2019-01-12 02:51:41 +00:00
|
|
|
<div class="splitcontent">
|
2010-01-03 11:37:04 +00:00
|
|
|
<div class="splitcontentleft">
|
2012-01-07 16:18:53 +00:00
|
|
|
<% if @allowed_projects.present? %>
|
|
|
|
|
<p>
|
|
|
|
|
<label for="issue_project_id"><%= l(:field_project) %></label>
|
2013-05-04 15:03:07 +00:00
|
|
|
<%= select_tag('issue[project_id]',
|
2015-02-08 12:07:00 +00:00
|
|
|
project_tree_options_for_select(@allowed_projects,
|
|
|
|
|
:include_blank => ((!@copy || (@projects & @allowed_projects == @projects)) ? l(:label_no_change_option) : false),
|
|
|
|
|
:selected => @target_project),
|
2012-07-22 13:29:26 +00:00
|
|
|
:onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %>
|
2012-01-07 16:18:53 +00:00
|
|
|
</p>
|
|
|
|
|
<% end %>
|
2007-10-09 19:07:19 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for="issue_tracker_id"><%= l(:field_tracker) %></label>
|
2013-05-04 15:03:07 +00:00
|
|
|
<%= select_tag('issue[tracker_id]',
|
|
|
|
|
content_tag('option', l(:label_no_change_option), :value => '') +
|
2016-09-03 07:55:57 +00:00
|
|
|
options_from_collection_for_select(@trackers, :id, :name, @issue_params[:tracker_id]),
|
|
|
|
|
:onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %>
|
2010-01-03 11:37:04 +00:00
|
|
|
</p>
|
2008-01-06 17:06:14 +00:00
|
|
|
<% if @available_statuses.any? %>
|
2010-01-03 11:37:04 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_status_id'><%= l(:field_status) %></label>
|
2013-05-04 15:03:07 +00:00
|
|
|
<%= select_tag('issue[status_id]',
|
|
|
|
|
content_tag('option', l(:label_no_change_option), :value => '') +
|
2016-09-03 07:55:57 +00:00
|
|
|
options_from_collection_for_select(@available_statuses, :id, :name, @issue_params[:status_id]),
|
|
|
|
|
:onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %>
|
2010-01-03 11:37:04 +00:00
|
|
|
</p>
|
2007-10-12 15:55:06 +00:00
|
|
|
<% end %>
|
2012-07-05 12:20:07 +00:00
|
|
|
|
|
|
|
|
<% if @safe_attributes.include?('priority_id') -%>
|
2010-01-03 11:37:04 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_priority_id'><%= l(:field_priority) %></label>
|
2013-05-04 15:03:07 +00:00
|
|
|
<%= select_tag('issue[priority_id]',
|
|
|
|
|
content_tag('option', l(:label_no_change_option), :value => '') +
|
|
|
|
|
options_from_collection_for_select(IssuePriority.active, :id, :name, @issue_params[:priority_id])) %>
|
2010-01-03 11:37:04 +00:00
|
|
|
</p>
|
2012-07-05 12:20:07 +00:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% if @safe_attributes.include?('assigned_to_id') -%>
|
2010-01-03 11:37:04 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_assigned_to_id'><%= l(:field_assigned_to) %></label>
|
2013-05-04 15:03:07 +00:00
|
|
|
<%= select_tag('issue[assigned_to_id]',
|
|
|
|
|
content_tag('option', l(:label_no_change_option), :value => '') +
|
|
|
|
|
content_tag('option', l(:label_nobody), :value => 'none', :selected => (@issue_params[:assigned_to_id] == 'none')) +
|
|
|
|
|
principals_options_for_select(@assignables, @issue_params[:assigned_to_id])) %>
|
2009-11-29 20:00:21 +00:00
|
|
|
</p>
|
2012-07-05 12:20:07 +00:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% if @safe_attributes.include?('category_id') -%>
|
2009-11-29 20:00:21 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_category_id'><%= l(:field_category) %></label>
|
2011-09-17 21:55:43 +00:00
|
|
|
<%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') +
|
2013-05-04 15:03:07 +00:00
|
|
|
content_tag('option', l(:label_none), :value => 'none', :selected => (@issue_params[:category_id] == 'none')) +
|
|
|
|
|
options_from_collection_for_select(@categories, :id, :name, @issue_params[:category_id])) %>
|
2007-10-12 15:55:06 +00:00
|
|
|
</p>
|
2012-07-05 12:20:07 +00:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% if @safe_attributes.include?('fixed_version_id') -%>
|
2007-10-12 15:55:06 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_fixed_version_id'><%= l(:field_fixed_version) %></label>
|
2011-09-17 21:55:43 +00:00
|
|
|
<%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') +
|
2013-05-04 15:03:07 +00:00
|
|
|
content_tag('option', l(:label_none), :value => 'none', :selected => (@issue_params[:fixed_version_id] == 'none')) +
|
|
|
|
|
version_options_for_select(@versions.sort, @issue_params[:fixed_version_id])) %>
|
2007-10-09 19:07:19 +00:00
|
|
|
</p>
|
2012-07-05 12:20:07 +00:00
|
|
|
<% end %>
|
2007-10-09 19:07:19 +00:00
|
|
|
|
2014-11-29 15:10:59 +00:00
|
|
|
<% if @copy && Setting.link_copied_issue == 'ask' %>
|
|
|
|
|
<p>
|
|
|
|
|
<label for='link_copy'><%= l(:label_link_copied_issue) %></label>
|
|
|
|
|
<%= hidden_field_tag 'link_copy', '0' %>
|
|
|
|
|
<%= check_box_tag 'link_copy', '1', params[:link_copy] != 0 %>
|
|
|
|
|
</p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2017-04-06 17:34:45 +00:00
|
|
|
<% if @copy && (@attachments_present || @subtasks_present || @watchers_present) %>
|
2012-04-14 06:21:03 +00:00
|
|
|
<p>
|
2017-04-06 17:34:45 +00:00
|
|
|
<label><%= l(:button_copy) %></label>
|
|
|
|
|
<% if @attachments_present %>
|
|
|
|
|
<label class="block">
|
|
|
|
|
<%= hidden_field_tag 'copy_attachments', '0' %>
|
|
|
|
|
<%= check_box_tag 'copy_attachments', '1', params[:copy_attachments] != '0' %>
|
|
|
|
|
<%= l(:label_attachment_plural) %>
|
|
|
|
|
</label>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% if @subtasks_present %>
|
|
|
|
|
<label class="block">
|
|
|
|
|
<%= hidden_field_tag 'copy_subtasks', '0' %>
|
|
|
|
|
<%= check_box_tag 'copy_subtasks', '1', params[:copy_subtasks] != '0' %>
|
|
|
|
|
<%= l(:label_subtask_plural) %>
|
|
|
|
|
</label>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% if @watchers_present %>
|
|
|
|
|
<label class="block">
|
|
|
|
|
<%= hidden_field_tag 'copy_watchers', '0' %>
|
|
|
|
|
<%= check_box_tag 'copy_watchers', '1', params[:copy_watchers] != '0' %>
|
|
|
|
|
<%= l(:label_issue_watchers) %>
|
|
|
|
|
</label>
|
|
|
|
|
<% end %>
|
2012-09-08 05:34:07 +00:00
|
|
|
</p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2010-01-03 11:37:04 +00:00
|
|
|
<%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="splitcontentright">
|
2012-01-23 18:35:11 +00:00
|
|
|
<% if @safe_attributes.include?('is_private') %>
|
|
|
|
|
<p>
|
|
|
|
|
<label for='issue_is_private'><%= l(:field_is_private) %></label>
|
|
|
|
|
<%= select_tag('issue[is_private]', content_tag('option', l(:label_no_change_option), :value => '') +
|
2013-05-04 15:03:07 +00:00
|
|
|
content_tag('option', l(:general_text_Yes), :value => '1', :selected => (@issue_params[:is_private] == '1')) +
|
|
|
|
|
content_tag('option', l(:general_text_No), :value => '0', :selected => (@issue_params[:is_private] == '0'))) %>
|
2012-01-23 18:35:11 +00:00
|
|
|
</p>
|
|
|
|
|
<% end %>
|
2012-07-05 12:20:07 +00:00
|
|
|
|
|
|
|
|
<% if @safe_attributes.include?('parent_issue_id') && @project %>
|
2011-03-27 15:00:02 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_parent_issue_id'><%= l(:field_parent_issue) %></label>
|
2013-05-04 15:03:07 +00:00
|
|
|
<%= text_field_tag 'issue[parent_issue_id]', '', :size => 10, :value => @issue_params[:parent_issue_id] %>
|
2013-09-30 19:27:00 +00:00
|
|
|
<label class="inline"><%= check_box_tag 'issue[parent_issue_id]', 'none', (@issue_params[:parent_issue_id] == 'none'), :id => nil, :data => {:disables => '#issue_parent_issue_id'} %><%= l(:button_clear) %></label>
|
2011-03-27 15:00:02 +00:00
|
|
|
</p>
|
2015-02-07 09:06:49 +00:00
|
|
|
<%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project, :scope => Setting.cross_project_subtasks)}')" %>
|
2011-03-27 15:00:02 +00:00
|
|
|
<% end %>
|
2012-07-05 12:20:07 +00:00
|
|
|
|
|
|
|
|
<% if @safe_attributes.include?('start_date') %>
|
2007-10-09 19:07:19 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_start_date'><%= l(:field_start_date) %></label>
|
2016-05-07 08:05:43 +00:00
|
|
|
<%= date_field_tag 'issue[start_date]', '', :value => @issue_params[:start_date], :size => 10 %><%= calendar_for('issue_start_date') %>
|
2013-09-30 19:27:00 +00:00
|
|
|
<label class="inline"><%= check_box_tag 'issue[start_date]', 'none', (@issue_params[:start_date] == 'none'), :id => nil, :data => {:disables => '#issue_start_date'} %><%= l(:button_clear) %></label>
|
2010-01-03 11:37:04 +00:00
|
|
|
</p>
|
2012-07-05 12:20:07 +00:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% if @safe_attributes.include?('due_date') %>
|
2010-01-03 11:37:04 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_due_date'><%= l(:field_due_date) %></label>
|
2016-05-07 08:05:43 +00:00
|
|
|
<%= date_field_tag 'issue[due_date]', '', :value => @issue_params[:due_date], :size => 10 %><%= calendar_for('issue_due_date') %>
|
2013-09-30 19:27:00 +00:00
|
|
|
<label class="inline"><%= check_box_tag 'issue[due_date]', 'none', (@issue_params[:due_date] == 'none'), :id => nil, :data => {:disables => '#issue_due_date'} %><%= l(:button_clear) %></label>
|
2010-01-03 11:37:04 +00:00
|
|
|
</p>
|
2012-07-05 12:20:07 +00:00
|
|
|
<% end %>
|
|
|
|
|
|
2016-04-03 11:48:07 +00:00
|
|
|
<% if @safe_attributes.include?('estimated_hours') %>
|
|
|
|
|
<p>
|
|
|
|
|
<label for='issue_estimated_hours'><%= l(:field_estimated_hours) %></label>
|
|
|
|
|
<%= text_field_tag 'issue[estimated_hours]', '', :value => @issue_params[:estimated_hours], :size => 10 %>
|
|
|
|
|
<label class="inline"><%= check_box_tag 'issue[estimated_hours]', 'none', (@issue_params[:estimated_hours] == 'none'), :id => nil, :data => {:disables => '#issue_estimated_hours'} %><%= l(:button_clear) %></label>
|
|
|
|
|
</p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2012-07-05 12:20:07 +00:00
|
|
|
<% if @safe_attributes.include?('done_ratio') && Issue.use_field_for_done_ratio? %>
|
2010-01-03 11:37:04 +00:00
|
|
|
<p>
|
2011-10-29 01:14:47 +00:00
|
|
|
<label for='issue_done_ratio'><%= l(:field_done_ratio) %></label>
|
2024-05-29 15:06:28 +00:00
|
|
|
<%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..100).step(Setting.issue_done_ratio_interval.to_i).to_a.collect {|r| ["#{r} %", r]}, @issue_params[:done_ratio]) %>
|
2007-10-09 19:07:19 +00:00
|
|
|
</p>
|
2009-01-25 16:04:28 +00:00
|
|
|
<% end %>
|
2010-01-03 11:37:04 +00:00
|
|
|
</div>
|
2019-01-12 02:51:41 +00:00
|
|
|
</div>
|
2020-04-11 08:58:09 +00:00
|
|
|
|
|
|
|
|
<% custom_fields = @custom_fields %>
|
|
|
|
|
<% custom_fields_full_width = custom_fields.select { |value| value.full_width_layout? } %>
|
|
|
|
|
<% custom_fields -= custom_fields_full_width %>
|
|
|
|
|
|
|
|
|
|
<% if custom_fields.present? %>
|
|
|
|
|
<div class="splitcontent">
|
|
|
|
|
<div class="splitcontentleft">
|
|
|
|
|
<% i = 0 %>
|
|
|
|
|
<% split_on = (custom_fields.size / 2.0).ceil - 1 %>
|
|
|
|
|
<% custom_fields.each do |custom_field| %>
|
|
|
|
|
<p>
|
|
|
|
|
<label><%= custom_field.name %></label>
|
|
|
|
|
<%= custom_field_tag_for_bulk_edit('issue', custom_field, @issues, @issue_params[:custom_field_values][custom_field.id.to_s]) %>
|
|
|
|
|
</p>
|
|
|
|
|
<% if i == split_on %>
|
|
|
|
|
</div><div class="splitcontentright">
|
|
|
|
|
<% end %>
|
|
|
|
|
<% i += 1 %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% custom_fields_full_width.each do |custom_field| %>
|
|
|
|
|
<p>
|
|
|
|
|
<label><%= custom_field.name %></label>
|
|
|
|
|
<%= custom_field_tag_for_bulk_edit('issue', custom_field, @issues, @issue_params[:custom_field_values][custom_field.id.to_s]) %>
|
|
|
|
|
</p>
|
2020-04-11 09:02:01 +00:00
|
|
|
<%= wikitoolbar_for "issue_custom_field_values_#{custom_field.id}", preview_issue_path(:project_id => @project, :issue_id => nil) if custom_field.full_text_formatting? %>
|
2020-04-11 08:58:09 +00:00
|
|
|
<% end %>
|
|
|
|
|
|
2007-10-09 19:07:19 +00:00
|
|
|
</fieldset>
|
2008-02-10 13:17:41 +00:00
|
|
|
|
2013-03-15 14:57:38 +00:00
|
|
|
<fieldset>
|
|
|
|
|
<legend><%= l(:field_notes) %></legend>
|
2025-10-06 22:45:02 +00:00
|
|
|
<%= textarea_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit',
|
2019-09-09 21:49:48 +00:00
|
|
|
:data => {
|
2020-10-25 00:01:14 +00:00
|
|
|
:auto_complete => true
|
2025-09-21 16:42:07 +00:00
|
|
|
}.merge(list_autofill_data_attributes)
|
2019-09-09 21:49:48 +00:00
|
|
|
%>
|
2008-02-10 13:17:41 +00:00
|
|
|
<%= wikitoolbar_for 'notes' %>
|
2018-12-16 07:00:11 +00:00
|
|
|
|
2022-09-23 05:58:19 +00:00
|
|
|
<% if User.current.allowed_to?(:add_issue_watchers, nil, global: true)%>
|
|
|
|
|
<%= update_data_sources_for_auto_complete({users: watchers_autocomplete_for_mention_path(q: '', object_type: 'issue', object_id: @issues.map(&:id) )}) %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2018-12-16 07:00:11 +00:00
|
|
|
<% if @safe_attributes.include?('private_notes') %>
|
|
|
|
|
<label class="inline">
|
|
|
|
|
<%= check_box_tag 'issue[private_notes]', 1, false %>
|
|
|
|
|
<%= l(:field_private_notes) %>
|
|
|
|
|
</label>
|
|
|
|
|
<% end %>
|
2009-02-03 17:15:59 +00:00
|
|
|
</fieldset>
|
2007-10-09 19:07:19 +00:00
|
|
|
</div>
|
2008-02-10 13:17:41 +00:00
|
|
|
|
2017-01-18 14:49:57 +00:00
|
|
|
<% if @values_by_custom_field.present? %>
|
|
|
|
|
<div class="flash warning">
|
2025-03-26 21:08:50 +00:00
|
|
|
<%= notice_icon('warning') %>
|
2019-08-13 14:23:46 +00:00
|
|
|
<%= l(:warning_fields_cleared_on_bulk_edit) %>:<br />
|
2017-01-18 14:49:57 +00:00
|
|
|
<%= safe_join(@values_by_custom_field.map {|field, ids| content_tag "span", "#{field.name} (#{ids.size})"}, ', ') %>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2012-01-07 16:18:53 +00:00
|
|
|
<p>
|
2013-03-15 14:57:38 +00:00
|
|
|
<% if @copy %>
|
|
|
|
|
<%= hidden_field_tag 'copy', '1' %>
|
|
|
|
|
<%= submit_tag l(:button_copy) %>
|
|
|
|
|
<%= submit_tag l(:button_copy_and_follow), :name => 'follow' %>
|
|
|
|
|
<% elsif @target_project %>
|
|
|
|
|
<%= submit_tag l(:button_move) %>
|
|
|
|
|
<%= submit_tag l(:button_move_and_follow), :name => 'follow' %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= submit_tag l(:button_submit) %>
|
|
|
|
|
<% end %>
|
2012-01-07 16:18:53 +00:00
|
|
|
</p>
|
|
|
|
|
|
2008-02-10 13:17:41 +00:00
|
|
|
<% end %>
|
2013-09-30 19:27:00 +00:00
|
|
|
|
|
|
|
|
<%= javascript_tag do %>
|
2019-08-13 14:23:46 +00:00
|
|
|
$(window).on('load', function(){
|
2013-09-30 19:27:00 +00:00
|
|
|
$(document).on('change', 'input[data-disables]', function(){
|
2014-09-14 14:17:52 +00:00
|
|
|
if ($(this).prop('checked')){
|
2013-09-30 19:27:00 +00:00
|
|
|
$($(this).data('disables')).attr('disabled', true).val('');
|
|
|
|
|
} else {
|
|
|
|
|
$($(this).data('disables')).attr('disabled', false);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
$('input[data-disables]').trigger('change');
|
|
|
|
|
});
|
|
|
|
|
<% end %>
|