From: Philip Reetz
Date: Mon, 13 Aug 2007 09:58:12 +0000 (+0000)
Subject: Bei Gutschriften wurde der Lagerbestand falsch aktualisiert
X-Git-Tag: release-2.6.0beta1~519
X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=8bfb21c73f13e8efe4efbe4897f5bcc1ef7fd7e4;p=kivitendo-erp.git
Bei Gutschriften wurde der Lagerbestand falsch aktualisiert
---
diff --git a/SL/IS.pm b/SL/IS.pm
index e559286d2..37861e5be 100644
--- a/SL/IS.pm
+++ b/SL/IS.pm
@@ -959,7 +959,7 @@ sub post_invoice {
do_query($form, $dbh, $query, @values);
if($form->{"formname"} eq "credit_note") {
- for my $i (1 .. $form->{paidaccounts}) {
+ for my $i (1 .. $form->{rowcount}) {
$query = qq|UPDATE parts SET onhand = onhand - ? WHERE id = ?|;
@values = (conv_i($form->{"qty_$i"}), conv_i($form->{"id_$i"}));
do_query($form, $dbh, $query, @values);