remove cost_reports_helper.rb

git-svn-id: https://dev.finn.de/svn/cockpit/trunk@960 7926756e-e54e-46e6-9721-ed318f58905e
pull/6827/head
rkh 15 years ago
parent 09240540ee
commit d731e9067d
  1. 34
      app/helpers/cost_reports_helper.rb

@ -1,34 +0,0 @@
module CostReportsHelper
include QueriesHelper
def operators_for_select(type_name)
CostQuery.filter_types[type_name][:operators].collect {|o| [l(CostQuery.operators[o][:label]), o]}
end
def scope_icon_class(filter)
case filter.scope
when :issues
"wide-icon single-wide-icon icon-ticket"
when :costs
applies = @query.available_filters[filter.scope][filter.column_name][:applies]
return "wide-icon" if applies.nil? || applies.empty?
if applies.length > 1
"wide-icon icon-money-time"
else
case applies[0]
when :time_entries
"wide-icon single-wide-icon icon-time"
when :cost_entries
"wide-icon single-wide-icon icon-money"
end
end
end
end
def js_reorder_links(name, function)
link_to_function(image_tag('2uparrow.png', :alt => l(:label_sort_highest)), "#{function}('#{escape_javascript(name)}', 'highest')", :title => l(:label_sort_highest)) +
link_to_function(image_tag('1uparrow.png', :alt => l(:label_sort_higher)), "#{function}('#{escape_javascript(name)}', 'higher')", :title => l(:label_sort_higher)) +
link_to_function(image_tag('1downarrow.png', :alt => l(:label_sort_lower)), "#{function}('#{escape_javascript(name)}', 'lower')", :title => l(:label_sort_lower)) +
link_to_function(image_tag('2downarrow.png', :alt => l(:label_sort_lowest)), "#{function}('#{escape_javascript(name)}', 'lowest')", :title => l(:label_sort_lowest))
end
end
Loading…
Cancel
Save