Actually, start of accounts should really have the begin date included.

This commit is contained in:
Bradley M. Kuhn 2011-12-02 08:28:14 -05:00
parent c2583a8496
commit 16c2a98eeb

View file

@ -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: $!";