From 66b2b0ed46e488b3efc4c5e48cd4a1f9c4837952 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 2 Mar 2017 16:16:39 +0100 Subject: [PATCH] Kreditorenbuchungen: Zahlungen buchen gefixt MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Seit Umstellung auf die Verwendung des Chart-Pickers heißt die Form-Variable für das Verbindlichkeitskonto »AP_chart_id«, und nicht mehr »APselected«. Außerdem enthält sie die Datenbank-ID des Kontos, und nicht die Kontonummer. --- SL/AP.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SL/AP.pm b/SL/AP.pm index 2d232a24b..095f22743 100644 --- a/SL/AP.pm +++ b/SL/AP.pm @@ -649,7 +649,7 @@ sub _post_payment { # Get the AP accno. $query = - qq|SELECT c.accno + qq|SELECT c.id FROM acc_trans at LEFT JOIN chart c ON (at.chart_id = c.id) WHERE (trans_id = ?) @@ -657,7 +657,7 @@ sub _post_payment { ORDER BY at.acc_trans_id LIMIT 1|; - ($form->{APselected}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id})); + ($form->{AP_chart_id}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id})); # Post the new payments. $self->post_transaction($myconfig, $form, $dbh, 1); -- 2.20.1