workflows_helper.rb
95 lines
| 3.4 KiB
| text/x-ruby
|
RubyLexer
|
r8090 | # encoding: utf-8 | ||
# | ||||
|
r1912 | # Redmine - project management software | ||
|
r13490 | # Copyright (C) 2006-2015 Jean-Philippe Lang | ||
|
r1912 | # | ||
# 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. | ||||
|
r6820 | # | ||
|
r1912 | # 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. | ||||
|
r6820 | # | ||
|
r1912 | # 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. | ||||
module WorkflowsHelper | ||||
|
r12649 | def options_for_workflow_select(name, objects, selected, options={}) | ||
option_tags = ''.html_safe | ||||
multiple = false | ||||
if selected | ||||
if selected.size == objects.size | ||||
selected = 'all' | ||||
else | ||||
selected = selected.map(&:id) | ||||
if selected.size > 1 | ||||
multiple = true | ||||
end | ||||
end | ||||
else | ||||
selected = objects.first.try(:id) | ||||
end | ||||
all_tag_options = {:value => 'all', :selected => (selected == 'all')} | ||||
if multiple | ||||
all_tag_options.merge!(:style => "display:none;") | ||||
end | ||||
|
r12653 | option_tags << content_tag('option', l(:label_all), all_tag_options) | ||
|
r12649 | option_tags << options_from_collection_for_select(objects, "id", "name", selected) | ||
select_tag name, option_tags, {:multiple => multiple}.merge(options) | ||||
end | ||||
|
r9827 | def field_required?(field) | ||
|
r9859 | field.is_a?(CustomField) ? field.is_required? : %w(project_id tracker_id subject priority_id is_private).include?(field) | ||
|
r9827 | end | ||
|
r12649 | def field_permission_tag(permissions, status, field, roles) | ||
|
r9794 | name = field.is_a?(CustomField) ? field.id.to_s : field | ||
|
r9827 | options = [["", ""], [l(:label_readonly), "readonly"]] | ||
options << [l(:label_required), "required"] unless field_required?(field) | ||||
|
r11782 | html_options = {} | ||
|
r12649 | |||
if perm = permissions[status.id][name] | ||||
if perm.uniq.size > 1 || perm.size < @roles.size * @trackers.size | ||||
options << [l(:label_no_change_option), "no_change"] | ||||
selected = 'no_change' | ||||
else | ||||
selected = perm.first | ||||
end | ||||
end | ||||
hidden = field.is_a?(CustomField) && | ||||
!field.visible? && | ||||
!roles.detect {|role| role.custom_fields.to_a.include?(field)} | ||||
|
r9818 | |||
|
r11782 | if hidden | ||
options[0][0] = l(:label_hidden) | ||||
selected = '' | ||||
html_options[:disabled] = true | ||||
end | ||||
|
r12649 | select_tag("permissions[#{status.id}][#{name}]", options_for_select(options, selected), html_options) | ||
end | ||||
def transition_tag(workflows, old_status, new_status, name) | ||||
|
r14076 | w = workflows.select {|w| w.old_status == old_status && w.new_status == new_status}.size | ||
|
r12649 | |||
|
r14076 | tag_name = "transitions[#{ old_status.try(:id) || 0 }][#{new_status.id}][#{name}]" | ||
|
r12649 | if w == 0 || w == @roles.size * @trackers.size | ||
|
r13262 | hidden_field_tag(tag_name, "0", :id => nil) + | ||
|
r12649 | check_box_tag(tag_name, "1", w != 0, | ||
|
r14076 | :class => "old-status-#{old_status.try(:id) || 0} new-status-#{new_status.id}") | ||
|
r12649 | else | ||
select_tag tag_name, | ||||
|
r12653 | options_for_select([ | ||
[l(:general_text_Yes), "1"], | ||||
[l(:general_text_No), "0"], | ||||
[l(:label_no_change_option), "no_change"] | ||||
], "no_change") | ||||
|
r12649 | end | ||
|
r9794 | end | ||
|
r1912 | end | ||