diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-09-07 18:04:52 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-09-07 18:04:52 +0000 |
commit | f0479a682413c6ac9003c11dc6e59628d6298e7f (patch) | |
tree | 2002d5a4816423ef3c469ee73817fd3643bf7c85 /bin | |
parent | b3a2eb9f716913a36e8e8dc382f5ebc376f45ce0 (diff) |
Applying patch 1790355: Recurring transaction groups now have subtotals
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1533 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rw-r--r-- | bin/am.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3052,9 +3052,10 @@ sub recurring_transactions { %f = &formnames; foreach $transaction ( sort keys %{ $form->{transactions} } ) { + my $transaction_count = scalar( @{ $form->{transactions}{$transaction} } ); print qq| <tr> - <th class="listheading" colspan=$colspan>$tr{$transaction}</th> + <th class="listheading" colspan=$colspan>$tr{$transaction} ($transaction_count)</th> </tr> |; |