From 339f0756a3d725c5037d5482a1516ea60ba2c176 Mon Sep 17 00:00:00 2001 From: tetragon Date: Mon, 5 Nov 2007 19:14:39 +0000 Subject: Add missing $parts_id to query in add_items_required git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1853 4979c152-3d1c-0410-bac9-87ea11338e46 --- LedgerSMB/OE.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LedgerSMB/OE.pm b/LedgerSMB/OE.pm index 6ced7f1d..5b83c786 100755 --- a/LedgerSMB/OE.pm +++ b/LedgerSMB/OE.pm @@ -2207,9 +2207,9 @@ sub add_items_required { JOIN parts p ON (p.id = a.parts_id) WHERE a.id = ?|; $sth = $dbh->prepare($query); - $sth->execute || $form->dberror($query); + $sth->execute($parts_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); &add_items_required( "", $dbh, $form, $ref->{id}, $required * $ref->{qty}, -- cgit v1.2.3