From: Moritz Bunkus Date: Tue, 12 Dec 2006 14:07:02 +0000 (+0000) Subject: Wenn ein Enddatum angegeben wird, dann muss das auch berücksichtigt werden. Fix für... X-Git-Tag: release-2.4.0^2~68 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=70e8595918db106d9efdc76559059898a9ed8e6a;p=kivitendo-erp.git Wenn ein Enddatum angegeben wird, dann muss das auch berücksichtigt werden. Fix für Bugzilla #424. --- diff --git a/SL/CA.pm b/SL/CA.pm index 4453a9fd6..28ffc2e73 100644 --- a/SL/CA.pm +++ b/SL/CA.pm @@ -141,6 +141,7 @@ sub all_transactions { if ($form->{todate}) { $fromto .= " AND ac.transdate <= '$form->{todate}'"; $subwhere .= " AND transdate <= '$form->{todate}'"; + $glwhere .= " AND ac.transdate <= '$form->{todate}'"; } if ($form->{eur}) {