diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-07-20 06:25:21 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-07-20 06:25:21 +0000 |
commit | 478ddb8ab47efc6bd48763c7434cac7396dd0482 (patch) | |
tree | af9bd4d27686d3b9d12b38ecece89e5854e6b1dc /bin | |
parent | 85b9468d5244968a15d6a83bd9f147975b0dd7ec (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
Diffstat (limited to 'bin')
-rw-r--r-- | 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 ); |