diff options
author | ivan <ivan> | 2008-07-31 20:17:42 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-07-31 20:17:42 +0000 |
commit | 02b11d5feb7fff6f282c20530b74f57fb901b00f (patch) | |
tree | 8b7db308e0ff02d5cef3babc6b36383e3306601d /httemplate | |
parent | 1f643e85b7edc08e481a8ea72a9ea97bf47599fd (diff) |
fix receivables report: credits/etc. should be limited by date like before, closes: Bug#3801
Diffstat (limited to 'httemplate')
-rwxr-xr-x | httemplate/search/report_receivables.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/report_receivables.cgi b/httemplate/search/report_receivables.cgi index 3e500065a..b2fbb4d3c 100755 --- a/httemplate/search/report_receivables.cgi +++ b/httemplate/search/report_receivables.cgi @@ -174,7 +174,7 @@ sub balance { $start = $start ? "( $str2time now() $closing - ".($start * 86400). ' )' : ''; $end = $end ? "( $str2time now() $closing - ".($end * 86400). ' )' : ''; - #$opt{'unapplied_date'} = 1; + $opt{'unapplied_date'} = 1; ( $opt{sum} ? 'SUM( ' : '' ). FS::cust_main->balance_date_sql( $start, $end, %opt ). |