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/app/models/query/sums.rb

148 lines
4.2 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2020 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-2017 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 docs/COPYRIGHT.rdoc for more details.
#++
module ::Query::Sums
include ActionView::Helpers::NumberHelper
def next_in_same_group?(issue = cached_issue)
caching_issue issue do |issue|
!last_issue? &&
query.group_by_column.value(issue) == query.group_by_column.value(work_packages[issue_index + 1])
end
end
def last_issue?(issue = cached_issue)
caching_issue issue do |_issue|
issue_index == work_packages.size - 1
end
end
def issue_index(issue = cached_issue)
caching_issue issue do |issue|
work_packages.find_index(issue)
end
end
def grouped_sum_of_issue(column, issue = cached_issue)
grouped_sum_of column, group_for_issue(issue)
end
def grouped_sum_of(column, group)
sum_of column, group
end
def grouped_sums(column)
work_packages
.map { |wp| query.group_by_column.value(wp) }
.uniq
.inject({}) do |group_sums, current_group|
work_packages_in_current_group = work_packages.select { |wp| query.group_by_column.value(wp) == current_group }
# TODO: sum_of only works fast when passing an AR::Relation
group_sums.merge current_group => sum_of(column, work_packages_in_current_group)
end
end
def total_sum_of(column)
sum_of(column, work_packages)
end
def sum_of(column, collection)
return nil unless should_be_summed_up?(column)
sum = column.sum_of(collection)
crunch(sum)
end
def caching_issue(issue)
@cached_issue = issue unless @cached_issue == issue
block_given? ? yield(issue) : issue
end
def cached_issue
@cached_issue
end
def mapping_for(column)
if column.respond_to? :real_value
method(:number_to_currency)
else
# respond_to? :call, but do nothing
@nilproc ||= Proc.new { |val| val }
end
end
def crunch(num)
return num if num.nil? or num.integer?
Float(format('%.2f', num.to_f))
end
def group_for_issue(issue = @current_issue)
caching_issue issue do |issue|
work_packages.select do |is|
query.group_by_column.value(issue) == query.group_by_column.value(is)
end
end
end
def should_be_summed_up?(column)
column.summable? && Setting.work_package_list_summable_columns.include?(column.name.to_s)
end
def column_total_sums
query.columns.map { |column| total_sum_of(column) }
end
def all_total_sums
query.available_columns.select { |column|
should_be_summed_up?(column)
}.inject({}) { |result, column|
sum = total_sum_of(column)
result[column] = sum unless sum.nil?
result
}
end
def all_sums_for_group(group)
return nil unless query.grouped?
group_work_packages = work_packages.select { |wp| query.group_by_column.value(wp) == group }
query.available_columns.inject({}) do |result, column|
sum = sum_of(column, group_work_packages)
result[column] = sum unless sum.nil?
result
end
end
def column_group_sums
query.group_by_column && query.columns.map { |column| grouped_sums(column) }
end
12 years ago
end