2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# 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.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
module ReportsHelper
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
def aggregate(data, criteria)
|
|
|
|
a = 0
|
|
|
|
data.each { |row|
|
|
|
|
match = 1
|
|
|
|
criteria.each { |k, v|
|
2007-05-28 13:09:37 +04:00
|
|
|
match = 0 unless (row[k].to_s == v.to_s) || (k == 'closed' && row[k] == (v == 0 ? "f" : "t"))
|
2007-03-12 20:59:02 +03:00
|
|
|
} unless criteria.nil?
|
|
|
|
a = a + row["total"].to_i if match == 1
|
|
|
|
} unless data.nil?
|
|
|
|
a
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2007-08-13 21:00:59 +04:00
|
|
|
def aggregate_link(data, criteria, *args)
|
|
|
|
a = aggregate data, criteria
|
|
|
|
a > 0 ? link_to(a, *args) : '-'
|
2011-05-30 22:52:25 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|