Skip to content
Snippets Groups Projects
Commit 1f87eab4 authored by jaapjansma's avatar jaapjansma
Browse files

Added aggregation by receive date and id to the contribution aggrated data source.

parent 0efe8249
No related branches found
No related tags found
No related merge requests found
# Version 1.86 (not yet released)
* Added aggregation by receive date and id to the contribution aggrated data source.
# Version 1.85
* added output handlers to count and sum recurring contributions
......
......@@ -62,6 +62,10 @@ class AggregatedContributionSource extends AbstractCivicrmEntitySource {
protected function getPossibleAggregateFunctions() {
return [
'sum_total_amount' => E::ts('Sum Total Amount'),
'max_receive_date' => E::ts('Last one by receive date'),
'min_receive_date' => E::ts('First one by receive date'),
'max_id' => E::ts('Last one by contribution id'),
'min_id' => E::ts('First one by contribution id'),
];
}
......
......@@ -15,7 +15,7 @@
<url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
</urls>
<releaseDate>2023-09-27</releaseDate>
<version>1.85</version>
<version>1.86-dev</version>
<develStage>stable</develStage>
<compatibility>
<ver>5.37</ver>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment