From 9eb0bb043420ce3647c45e7690cc3c33f005dcac Mon Sep 17 00:00:00 2001 From: tetragon Date: Thu, 29 Nov 2007 21:40:36 +0000 Subject: More number formatting fixes git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1924 4979c152-3d1c-0410-bac9-87ea11338e46 --- LedgerSMB/IC.pm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/LedgerSMB/IC.pm b/LedgerSMB/IC.pm index 4a98f8a4..04571bb0 100755 --- a/LedgerSMB/IC.pm +++ b/LedgerSMB/IC.pm @@ -84,7 +84,8 @@ sub get_part { $sth->execute( $form->{id} ) || $form->dberror($query); $form->{assembly_rows} = 0; - while ( my $ref = $sth->fetchrow_hashref(NAME_lc) ) { + while ( my $ref = $sth->fetchrow_hashref('NAME_lc') ) { + $form->db_parse_numeric(sth => $sth, hashref => $ref); $form->{assembly_rows}++; foreach my $key ( keys %{$ref} ) { $form->{"${key}_$form->{assembly_rows}"} = $ref->{$key}; @@ -172,7 +173,8 @@ sub get_part { $sth = $dbh->prepare($query); $sth->execute( $form->{id} ) || $form->dberror($query); - while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) { + while ( $ref = $sth->fetchrow_hashref('NAME_lc') ) { + $form->db_parse_numeric(sth => $sth, hashref => $ref); push @{ $form->{vendormatrix} }, $ref; } $sth->finish; @@ -193,7 +195,8 @@ sub get_part { $sth = $dbh->prepare($query); $sth->execute( $form->{id} ) || $form->dberror($query); - while ( $ref = $sth->fetchrow_hashref(NAME_lc) ) { + while ( $ref = $sth->fetchrow_hashref('NAME_lc') ) { + $form->db_parse_numeric(sth => $sth, hashref => $ref); push @{ $form->{customermatrix} }, $ref; } $sth->finish; -- cgit v1.2.3