summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-07-20 06:24:45 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-07-20 06:24:45 +0000
commited1d4414cb15a901ecca5e5f96c88f44025c34ec (patch)
treecc43dc4915df80302f363f326a2d7e5ae749d14a /bin
parenta756ca0a8ce12be46940050eede79959f1f85947 (diff)
Fixing GL report amount boxes ignore number formats (bug 1754976)
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1429 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gl.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/gl.pl b/bin/gl.pl
index 65637309..98406247 100755
--- 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 );