Actually, start of accounts should really have the begin date included.
This commit is contained in:
parent
c2583a8496
commit
16c2a98eeb
1 changed files with 1 additions and 1 deletions
|
|
@ -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: $!";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue