Chart cache_taxkeys - startdate korrekt abfragen
authorG. Richardson <grichardson@kivitec.de>
Tue, 30 Jun 2020 12:02:41 +0000 (14:02 +0200)
committerG. Richardson <grichardson@kivitec.de>
Tue, 30 Jun 2020 12:03:53 +0000 (14:03 +0200)
Ansonsten werden Buchungen am 1.7.2020 (= startdate) nicht richtig
zugeordnet.

SL/DB/Manager/Chart.pm

index 4d11960..d70e7f9 100644 (file)
@@ -135,7 +135,7 @@ sub cache_taxkeys {
   my $rows = selectall_hashref_query($::form, $::form->get_standard_dbh, <<"", $date);
     SELECT DISTINCT ON (chart_id) chart_id, startdate, id
     FROM taxkeys
-    WHERE startdate < ?
+    WHERE startdate <= ?
     ORDER BY chart_id, startdate DESC;
 
   for (@$rows) {