summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-07-20 06:25:21 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-07-20 06:25:21 +0000
commit478ddb8ab47efc6bd48763c7434cac7396dd0482 (patch)
treeaf9bd4d27686d3b9d12b38ecece89e5854e6b1dc
parent85b9468d5244968a15d6a83bd9f147975b0dd7ec (diff)
Fixing GL report amount boxes ignore number formats (bug 1754976)
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1430 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r--bin/gl.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/gl.pl b/bin/gl.pl
index f5b9d55b..284d9bfd 100644
--- a/bin/gl.pl
+++ b/bin/gl.pl
@@ -431,6 +431,8 @@ qq|<input name="l_description" class=checkbox type=checkbox value=Y checked> |
sub generate_report {
$form->{sort} = "transdate" unless $form->{sort};
+ $form->{amountfrom} = $form->parse_amount(\%myconfig, $form->{amountfrom});
+ $form->{amountto} = $form->parse_amount(\%myconfig, $form->{amountto});
GL->all_transactions( \%myconfig, \%$form );