Unter Zahlungsverkehr -> Kontenabgleich - SQL Fehler behoben, falls ein Von-Datum...
authorJan Büren <information@richardson-bueren.de>
Wed, 6 May 2009 13:57:25 +0000 (13:57 +0000)
committerJan Büren <information@richardson-bueren.de>
Wed, 6 May 2009 13:57:25 +0000 (13:57 +0000)
SL/RC.pm

index 3c91195..65ea665 100644 (file)
--- 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 {