<%#-- copyright OpenProject is an open source project management software. Copyright (C) 2012-2024 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: Copyright (C) 2006-2013 Jean-Philippe Lang Copyright (C) 2010-2013 the ChiliProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See COPYRIGHT and LICENSE files for more details. ++#%> <% html_title @copy ? t(:button_copy) : t(:button_move), t('activerecord.models.work_package') %>

<%= @copy ? t(:button_copy) : t(:button_move) %>

<%= styled_form_tag({action: 'create'}, id: 'move_form', data: { 'controller': 'refresh-on-form-changes', 'refresh-on-form-changes-target': 'form', 'refresh-on-form-changes-refresh-url-value': url_for(action: 'new') }, class: '-wide-labels augment--refresh-on-form-changes') do %> <% @work_packages.each do |wp| %> <%= hidden_field_tag 'ids[]', wp.id %> <% end %> <%= back_url_hidden_field_tag %>
<%= t(:label_change_properties) %>
<%= angular_component_tag 'opce-project-autocompleter', inputs: { filters: [{ name: 'user_action', operator: '=', values: ['work_packages/move'] }], inputName: 'new_project_id', model: @target_project, appendTo: 'body', hiddenFieldAction: 'change->refresh-on-form-changes#triggerReload', clearable: false, }, id: 'new_project_id', class: 'remote-field--input', data: { 'test-selector': 'new_project_id' } %>
<%= styled_select_tag("new_type_id", content_tag('option', t(:label_no_change_option), value: '') + options_from_collection_for_select(@types, "id", "name", @target_type&.id), data: { 'action': 'change->refresh-on-form-changes#triggerReload' }) %>
<%= styled_select_tag('status_id', content_tag('option', t(:label_no_change_option), value: '') + options_from_collection_for_select(@available_statuses, :id, :name)) %>
<%= styled_select_tag('version_id', content_tag('option', t(:label_no_change_option), value: '') + version_options_for_select(@available_versions)) %>
<%= styled_select_tag('priority_id', content_tag('option', t(:label_no_change_option), value: '') + options_from_collection_for_select(IssuePriority.active, :id, :name)) %>
<%= styled_select_tag('assigned_to_id', content_tag('option', t(:label_no_change_option), value: '') + content_tag('option', t(:label_nobody), value: 'none') + options_from_collection_for_select(Principal.possible_assignee(@target_project), :id, :name)) %>
<%= styled_select_tag('responsible_id', content_tag('option', t(:label_no_change_option), value: '') + content_tag('option', t(:label_nobody), value: 'none') + options_from_collection_for_select(Principal.possible_assignee(@target_project), :id, :name)) %>
<%= styled_label_tag :budget_id, Budget.model_name.human %> <%= styled_select_tag('budget_id', (@target_project == @project ? content_tag('option', t(:label_no_change_option), :value => '') : "") + content_tag('option', t(:label_none), :value => 'none') + options_from_collection_for_select(@target_project.budgets, :id, :subject)) %>
<%= angular_component_tag 'op-basic-single-date-picker', inputs: { id: "start_date", name: "start_date" } %>
<%= angular_component_tag 'op-basic-single-date-picker', inputs: { id: "due_date", name: "due_date" } %>
<% if @target_type %> <% @target_type.custom_fields.required.each do |custom_field| %>
<%= blank_custom_field_label_tag('', custom_field) %>
<%= custom_field_tag_for_bulk_edit('', custom_field, @project) %>
<% end %> <% end %>
<%= Journal.human_attribute_name(:notes) %> <%= label_tag 'notes', Journal.human_attribute_name(:notes), class: 'hidden-for-sighted' %> <%= styled_text_area_tag 'notes', @notes, cols: 60, rows: 10, class: 'wiki-edit', with_text_formatting: true %>
<%= call_hook(:view_work_packages_move_bottom, work_packages: @work_packages, target_project: @target_project, copy: !!@copy) %>
<% if @copy %> <%= hidden_field_tag("copy") %> <%= styled_submit_tag t(:button_copy), class: '-primary' %> <%= styled_submit_tag t(:button_copy_and_follow), name: 'follow', class: '-primary' %> <% else %> <%= styled_submit_tag t(:button_move), class: '-primary' %> <%= styled_submit_tag t(:button_move_and_follow), name: 'follow', class: '-primary' %> <% end %> <% end %> <% content_for :header_tags do %> <%= robot_exclusion_tag %> <% end %>