projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e8e33e
)
Chart cache_taxkeys - startdate korrekt abfragen
author
G. Richardson
<grichardson@kivitec.de>
Tue, 30 Jun 2020 12:02:41 +0000
(14:02 +0200)
committer
G. 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
patch
|
blob
|
history
diff --git
a/SL/DB/Manager/Chart.pm
b/SL/DB/Manager/Chart.pm
index
4d11960
..
d70e7f9
100644
(file)
--- a/
SL/DB/Manager/Chart.pm
+++ b/
SL/DB/Manager/Chart.pm
@@
-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) {