From 4371d3ac11fd01cf5c42d1e3cb938e857b7c7258 Mon Sep 17 00:00:00 2001 From: tetragon Date: Mon, 4 Dec 2006 21:12:19 +0000 Subject: Fix for db error of 1607680 git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@713 4979c152-3d1c-0410-bac9-87ea11338e46 --- LedgerSMB/AA.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LedgerSMB/AA.pm b/LedgerSMB/AA.pm index 592d8d24..e9d8c938 100755 --- a/LedgerSMB/AA.pm +++ b/LedgerSMB/AA.pm @@ -326,10 +326,10 @@ sub post_transaction { fx_transaction, cleared) VALUES (?, (SELECT id FROM chart WHERE accno = ?), - ? * ?, ?, ?, ?, ?, ?)|; + ?, ?, ?, ?, ?, ?)|; @queryargs = ($form->{id}, $ref->{accno}, - $ref->{amount}, $ml, $form->{transdate}, + $ref->{amount} * $ml, $form->{transdate}, $ref->{project_id}, $ref->{description}, $ref->{fx_transaction}, $ref->{cleared}); $dbh->prepare($query)->execute(@queryargs) -- cgit v1.2.3