From 48f53d311fa339b62a6d9fd38f7f134b7806f6c6 Mon Sep 17 00:00:00 2001 From: tetragon Date: Tue, 28 Aug 2007 18:03:40 +0000 Subject: Improve handling of the number format 1.000,00 by timecards git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1472 4979c152-3d1c-0410-bac9-87ea11338e46 --- LedgerSMB/JC.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'LedgerSMB') diff --git a/LedgerSMB/JC.pm b/LedgerSMB/JC.pm index dbcf916c..2f3bf9dc 100755 --- a/LedgerSMB/JC.pm +++ b/LedgerSMB/JC.pm @@ -76,6 +76,7 @@ sub get_jcitems { || $form->dberror($query); $ref = $sth->fetchrow_hashref(NAME_lc); + $form->db_parse_numeric(sth=>$sth, hashref=>$ref); for ( keys %$ref ) { $form->{$_} = $ref->{$_} } $sth->finish; @@ -488,6 +489,7 @@ sub jcitems { $sth->execute($dateformat) || $form->dberror($query); while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) { + $form->db_parse_numeric(sth=>$sth, hashref=>$ref); $ref->{project} = ( $ref->{parts_id} ) ? "job" : "project"; $ref->{transdate} = $ref->{transdatea}; delete $ref->{transdatea}; -- cgit v1.2.3