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

SF.net SVN: ledger-smb: [1499] branches/1.2/LedgerSMB/OE.pm



Revision: 1499
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=1499&view=rev
Author:   einhverfr
Date:     2007-09-01 23:31:13 -0700 (Sat, 01 Sep 2007)

Log Message:
-----------
Correcting bug 1750895:  Purchase order generation does not populate quantities

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

Modified: branches/1.2/LedgerSMB/OE.pm
===================================================================
--- branches/1.2/LedgerSMB/OE.pm	2007-09-02 05:54:43 UTC (rev 1498)
+++ branches/1.2/LedgerSMB/OE.pm	2007-09-02 06:31:13 UTC (rev 1499)
@@ -2398,7 +2398,7 @@
 					(?, ?, ?, ?, 0, ?, ?)|;
             $sth = $dbh->prepare($query);
             $sth->execute( $id, $parts_id, $description,
-                $a{vendor_id}{parts_id}{qty},
+                $a{$vendor_id}{$parts_id}{qty},
                 $sellprice, $unit )
               || $form->dberror($query);
 


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