diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-11-05 19:14:39 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-11-05 19:14:39 +0000 |
commit | 339f0756a3d725c5037d5482a1516ea60ba2c176 (patch) | |
tree | d54df41b03b73dc9f25701bd79a1604acdc64fd1 | |
parent | 43a76e20de8c8196e3a9bd053bdd99aa36b24488 (diff) |
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
-rwxr-xr-x | LedgerSMB/OE.pm | 4 |
1 files 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}, |