From: Moritz Bunkus Date: Thu, 2 Mar 2017 15:16:39 +0000 (+0100) Subject: Kreditorenbuchungen: Zahlungen buchen gefixt X-Git-Tag: release-3.5.4~1230 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=66b2b0ed46e488b3efc4c5e48cd4a1f9c4837952;p=kivitendo-erp.git Kreditorenbuchungen: Zahlungen buchen gefixt 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. --- 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);