summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorBradley M. Kuhn <bkuhn@ebb.org>2013-01-03 13:37:18 -0500
committerBradley M. Kuhn <bkuhn@ebb.org>2013-01-03 13:37:18 -0500
commit2fad8fe238cee8509290562a823fe0c3b312ee94 (patch)
treef0d451fdd0d0307746fc74be567bbda3979f45f6 /contrib
parent750321c0b1e35b0315138b35524f85d3648d8dda (diff)
downloadfork-ledger-2fad8fe238cee8509290562a823fe0c3b312ee94.tar.gz
fork-ledger-2fad8fe238cee8509290562a823fe0c3b312ee94.tar.bz2
fork-ledger-2fad8fe238cee8509290562a823fe0c3b312ee94.zip
Some minor formatting fixes for the trial balance report.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/non-profit-audit-reports/summary-reports.plx4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/non-profit-audit-reports/summary-reports.plx b/contrib/non-profit-audit-reports/summary-reports.plx
index efad30e7..8e9339a5 100755
--- a/contrib/non-profit-audit-reports/summary-reports.plx
+++ b/contrib/non-profit-audit-reports/summary-reports.plx
@@ -387,7 +387,7 @@ open(TRIAL, ">", "trial-balance.csv") or die "unable to open accrued.txt for wri
'reg');
print TRIAL "\"TRIAL BALANCE REPORT\",",
- "\"ENDING:\",\"$formattedEndDate\"\n\n\"ACCOUNT NAME\", \"AMOUNT\"\n\n";
+ "\"ENDING:\",\"$formattedEndDate\"\n\n\"ACCOUNT NAME\",\"AMOUNT\"\n\n";
open(FILE, "-|", @fullCommand)
or die "unable to run command ledger command: @fullCommand: $!";
@@ -413,7 +413,7 @@ close FILE;
die "unable to run trial balance ledger command: $!" unless ($? == 0);
foreach my $account (sort preferredAccountSorting keys %trialBalances) {
- print TRIAL "\"$account\",\"$trialBalances{$account}\"\n";
+ print TRIAL "\"$account\",\"\$$trialBalances{$account}\"\n";
}
close TRIAL;