diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-07-20 06:24:45 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-07-20 06:24:45 +0000 |
commit | ed1d4414cb15a901ecca5e5f96c88f44025c34ec (patch) | |
tree | cc43dc4915df80302f363f326a2d7e5ae749d14a /bin | |
parent | a756ca0a8ce12be46940050eede79959f1f85947 (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-x | bin/gl.pl | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 ); |