[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [1924] branches/1.2/LedgerSMB/IC.pm
- Subject: SF.net SVN: ledger-smb: [1924] branches/1.2/LedgerSMB/IC.pm
- From: ..hidden..
- Date: Thu, 29 Nov 2007 13:40:37 -0800
Revision: 1924
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=1924&view=rev
Author: tetragon
Date: 2007-11-29 13:40:36 -0800 (Thu, 29 Nov 2007)
Log Message:
-----------
More number formatting fixes
Modified Paths:
--------------
branches/1.2/LedgerSMB/IC.pm
Modified: branches/1.2/LedgerSMB/IC.pm
===================================================================
--- branches/1.2/LedgerSMB/IC.pm 2007-11-29 21:40:18 UTC (rev 1923)
+++ branches/1.2/LedgerSMB/IC.pm 2007-11-29 21:40:36 UTC (rev 1924)
@@ -84,7 +84,8 @@
$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 @@
$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 @@
$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;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.