OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/lib/widget/simple_table.rb

58 lines
1.8 KiB

class Widget::Table::SimpleTable < Widget::Table
simple_table self
def render
@list = @subject.collect {|r| r.important_fields }.flatten.uniq
@show_units = @list.include? "cost_type_id"
content = content_tag :table, { :class => "report", :id => "sortable-table" } do
concat head
concat foot
concat body
end
# FIXME do that js-only, like a man's man
render_widget Widget::Table::SortableInit, @subject, :to => content
write content.html_safe
end
def head
content_tag :thead do
content_tag :tr do
@list.each do |field|
concat content_tag(:th, :class => "right") { label_for(field) }
end
concat content_tag(:th, :class => "right") { label_for(:units) } if @show_units
concat content_tag(:th, :class => "right") { label_for(:label_sum) }
end
end
end
def foot
content_tag :tfoot do
content_tag :tr do
concat content_tag(:th, '', :class => "result inner", :colspan => @list.size)
concat content_tag(:th, show_result(@subject), (@show_units ? {:class => "result right", :colspan => "2"} : {:class => "result right"}))
end
end
end
def body
content_tag :tbody do
@subject.each do |result|
concat (content_tag :tr, :class => cycle("odd", "even") do
concat (content_tag :td, :'raw-data' => raw_field(*result.fields.first) do
show_row result
end)
if @show_units
concat (content_tag :td, :'raw-data' => result.units do
show_result result, result.fields[:cost_type_id].to_i
end)
end
concat (content_tag :td, :'raw-data' => result.real_costs do
show_result result
end)
end)
end
end
end
end