From: Jan Büren Date: Wed, 6 May 2009 13:57:25 +0000 (+0000) Subject: Unter Zahlungsverkehr -> Kontenabgleich - SQL Fehler behoben, falls ein Von-Datum... X-Git-Tag: release-2.6.0beta2~12 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=256d534fda017d49c10b7a5c234c72cc330b8f18;p=kivitendo-erp.git Unter Zahlungsverkehr -> Kontenabgleich - SQL Fehler behoben, falls ein Von-Datum ausgewaehlt ist. OFFEN: Bis-Datum (form->todate) wird gar nicht ausgewertet. Ferner ist der Code an dieser Stelle haesslich, ich meine, nicht nur haesslich sondern auch wartungsunfreundlich --- diff --git a/SL/RC.pm b/SL/RC.pm index 3c91195f8..65ea665f0 100644 --- a/SL/RC.pm +++ b/SL/RC.pm @@ -74,7 +74,7 @@ sub payment_transactions { qq| WHERE c2.accno = ?) AS category | . qq|FROM acc_trans a | . qq|JOIN chart c ON (c.id = a.chart_id) | . - qq|WHERE a.transdate < date ? AND a.cleared = '1' AND c.accno = ?|; + qq|WHERE a.transdate < ? AND a.cleared = '1' AND c.accno = ?|; @values = ($form->{accno}, conv_date($form->{fromdate}), $form->{accno}); } else {