summaryrefslogtreecommitdiff
path: root/LedgerSMB.pm
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-10-31 22:07:32 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-10-31 22:07:32 +0000
commitdbf1efaa612d24c3f3520a75de0155ca698b8673 (patch)
tree794288dcd4ad394a8111c5ad860dbe5d0c0bd059 /LedgerSMB.pm
parent50976eed0c12a2cb45944d0818b63a7c65885afb (diff)
Get db_parse_numeric to recognise float4/real as a "numeric" type.
Fixes problems with discount retreival on invoices. git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1831 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB.pm')
-rwxr-xr-xLedgerSMB.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/LedgerSMB.pm b/LedgerSMB.pm
index 99a3d994..d2eeb9bc 100755
--- a/LedgerSMB.pm
+++ b/LedgerSMB.pm
@@ -555,7 +555,8 @@ sub call_procedure {
my @names = @{$sth->{NAME_lc}};
while ( my $ref = $sth->fetchrow_hashref('NAME_lc') ) {
for (0 .. $#names){
- if ($types[$_] == 3){
+ # numeric float4/real
+ if ($types[$_] == 3 or $types[$_] == 2) {
$ref->{$names[$_]} = Math::BigFloat->new($ref->{$names[$_]});
}
}