[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb: [978] branches/1.2/LedgerSMB/AA.pm



Revision: 978
          http://svn.sourceforge.net/ledger-smb/?rev=978&view=rev
Author:   einhverfr
Date:     2007-03-21 11:31:40 -0700 (Wed, 21 Mar 2007)

Log Message:
-----------
Fixing error when posting invoice w/payment

Modified Paths:
--------------
    branches/1.2/LedgerSMB/AA.pm

Modified: branches/1.2/LedgerSMB/AA.pm
===================================================================
--- branches/1.2/LedgerSMB/AA.pm	2007-03-21 17:46:58 UTC (rev 977)
+++ branches/1.2/LedgerSMB/AA.pm	2007-03-21 18:31:40 UTC (rev 978)
@@ -427,8 +427,8 @@
 					                  WHERE accno = ?),
 					            ?, ?)|;
 
-				@queryargs = ($form->{id}, 
-					$paid{amount}{$i} * $ml, $accno,
+				@queryargs = ($form->{id}, $accno,
+					$paid{amount}{$i} * $ml, 
 					$form->{"datepaid_$i"});
 				$dbh->prepare($query)->execute(@queryargs) 
 					|| $form->dberror($query);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.