From: Bernd Bleßmann Date: Thu, 27 Feb 2020 15:05:53 +0000 (+0100) Subject: SelfTest: Transactions: Stornosumme -> copy/paste-Fehler ar statt ap X-Git-Tag: release-3.5.6.1~248 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=4542774a7be533c9312a8a4b1db2ed0209c71736;p=kivitendo-erp.git SelfTest: Transactions: Stornosumme -> copy/paste-Fehler ar statt ap --- diff --git a/SL/BackgroundJob/SelfTest/Transactions.pm b/SL/BackgroundJob/SelfTest/Transactions.pm index 5d4ba20a9..6ad354937 100644 --- a/SL/BackgroundJob/SelfTest/Transactions.pm +++ b/SL/BackgroundJob/SelfTest/Transactions.pm @@ -210,7 +210,7 @@ sub check_summe_stornobuchungen { my $query = qq| SELECT sum(amount) from ar a WHERE a.id IN - (SELECT id from ap where storno is true + (SELECT id from ar where storno is true AND a.transdate >= ? and a.transdate <= ?)|; my ($summe_stornobuchungen_ar) = selectfirst_array_query($::form, $self->dbh, $query, $self->fromdate, $self->todate);