summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorBradley M. Kuhn <bkuhn@ebb.org>2012-11-25 12:19:44 -0500
committerBradley M. Kuhn <bkuhn@ebb.org>2012-11-26 13:54:47 -0500
commit4318c11fd9b94a3508fac7cd7724407f2f7f6645 (patch)
tree0984d147c74f69a4617e5fd3025112c828eb7a87 /contrib
parent3e634b6d45ef1991350141df22ed038bae8de07e (diff)
downloadfork-ledger-4318c11fd9b94a3508fac7cd7724407f2f7f6645.tar.gz
fork-ledger-4318c11fd9b94a3508fac7cd7724407f2f7f6645.tar.bz2
fork-ledger-4318c11fd9b94a3508fac7cd7724407f2f7f6645.zip
Expense report favors Conferences first,
then takes Travel as if it were an Other category only after categories have been handled.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/non-profit-audit-reports/summary-reports.plx29
1 files changed, 15 insertions, 14 deletions
diff --git a/contrib/non-profit-audit-reports/summary-reports.plx b/contrib/non-profit-audit-reports/summary-reports.plx
index 7b521ccb..7d2267d6 100755
--- a/contrib/non-profit-audit-reports/summary-reports.plx
+++ b/contrib/non-profit-audit-reports/summary-reports.plx
@@ -291,20 +291,21 @@ foreach my $line (<FILE>) {
die "Weird account found, $account, with amount of $amount in expenses command\n"
unless $account =~ /^\s*Expenses:/;
- if ($account =~ /Travel/) {
- $expenseGroups{'TRAVEL'}{total} += $amount;
- $expenseGroups{'TRAVEL'}{output} .= " $line";
- } else {
- my $taken = 0;
- foreach my $type (keys %expenseGroups) {
- last if $taken;
- next if $type eq 'TRAVEL' or $type eq 'OTHER';
- next unless $line =~ /$expenseGroups{$type}{regex}/;
- $taken = 1;
- $expenseGroups{$type}{total} += $amount;
- $expenseGroups{$type}{output} .= " $line";
- }
- if (not $taken) {
+ my $taken = 0;
+ # Note: Prioritize to put things under conference expenses if they were for a conference.
+ foreach my $type ('CONFERENCES', keys %expenseGroups) {
+ last if $taken;
+ next if $type eq 'TRAVEL' or $type eq 'OTHER';
+ next unless $line =~ /$expenseGroups{$type}{regex}/;
+ $taken = 1;
+ $expenseGroups{$type}{total} += $amount;
+ $expenseGroups{$type}{output} .= " $line";
+ }
+ if (not $taken) {
+ if ($account =~ /Travel/) {
+ $expenseGroups{'TRAVEL'}{total} += $amount;
+ $expenseGroups{'TRAVEL'}{output} .= " $line";
+ } else {
$expenseGroups{'OTHER'}{total} += $amount;
$expenseGroups{'OTHER'}{output} .= " $line";
}