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/report/group_by.rb

22 lines
571 B

require "set"
class Report::GroupBy
extend ProactiveAutoloader
include Report::QueryUtils
autoload :Base, 'report/group_by/base'
autoload :RubyAggregation, 'report/group_by/ruby_aggregation'
autoload :SingletonValue, 'report/group_by/singleton_value.rb'
autoload :SqlAggregation, 'report/group_by/sql_aggregation'
def self.all
Set[engine::GroupBy::SingletonValue]
end
def self.all_grouped
all.group_by { |f| f.applies_for }.to_a.sort { |a,b| a.first.to_s <=> b.first.to_s }
end
def self.from_hash
raise NotImplementedError
end
end