From 16c2a98eeb461d705b554294b6f2cb6f21d3ef17 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Fri, 2 Dec 2011 08:28:14 -0500 Subject: [PATCH] Actually, start of accounts should really have the begin date included. --- general-ledger-report.plx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/general-ledger-report.plx b/general-ledger-report.plx index 245e82d..e7ec971 100755 --- a/general-ledger-report.plx +++ b/general-ledger-report.plx @@ -47,7 +47,7 @@ if (@ARGV < 2) { my($beginDate, $endDate, @otherLedgerOpts) = @ARGV; my(@chartOfAccountsOpts) = ('--wide-register-format', "%150A\n", '-w', '-s', - '-e', $endDate, @otherLedgerOpts, 'reg'); + '-b', $beginDate, '-e', $endDate, @otherLedgerOpts, 'reg'); open(CHART_DATA, "-|", $LEDGER_CMD, @chartOfAccountsOpts) or die "Unable to run $LEDGER_CMD @chartOfAccountsOpts: $!";