From 256d534fda017d49c10b7a5c234c72cc330b8f18 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20B=C3=BCren?= Date: Wed, 6 May 2009 13:57:25 +0000 Subject: [PATCH] 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 --- SL/RC.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.20.1