From: Jan Büren Date: Fri, 8 Apr 2016 08:43:32 +0000 (+0200) Subject: GuV und BWA: Bei Projektfilter Zeitraum richtig setzen X-Git-Tag: release-3.4.1~229 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=b29878cbc8a4fa1e0959fca593a91242894315fd;p=kivitendo-erp.git GuV und BWA: Bei Projektfilter Zeitraum richtig setzen --- diff --git a/SL/RP.pm b/SL/RP.pm index 8fd73f2ba..7bc476663 100644 --- a/SL/RP.pm +++ b/SL/RP.pm @@ -473,6 +473,9 @@ sub get_accounts_g { $inwhere = " AND (acc.transdate >= $fromdate)"; } else { $where .= " AND (ac.transdate >= $fromdate)"; + # hotfix for projectfilter in guv and bwa + # fromdate is otherwise ignored if project is selected + $prwhere = " AND (a.transdate >= $fromdate)"; } }