diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-02-10 16:39:47 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-02-10 16:39:47 +0000 |
commit | 95566394eee3c5db5a1abcf4a348a225122cf7d9 (patch) | |
tree | cf404774f5c488e679fa8c1e3c6effd18409ce47 | |
parent | 9ea345a12bf755c33c102f611ef17208b28b629e (diff) |
Fixing the display of taxes with '%' in PDF invoices
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@2068 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | bin/io.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1563,7 +1563,7 @@ sub print_form { "unit_$i", "notes_$i" ); } - for ( split / /, $form->{taxaccounts} ) { push @a, "${_}_description" } + for ( split / /, $form->{taxaccounts} ) { push @vars, "${_}_description" } $ARAP = ( $form->{vc} eq 'customer' ) ? "AR" : "AP"; push @vars, $ARAP; |