From f30ed1be7dccd91667712e586c517db6ab8f5b9d Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 9 Nov 2007 03:12:24 +0000 Subject: [PATCH] add option for listing customers without a balance (closes: RT#2752) and fix bug in total row (closes: RT#2736) --- httemplate/search/report_receivables.cgi | 139 ++++++++++++++++-------------- httemplate/search/report_receivables.html | 33 ++++--- 2 files changed, 94 insertions(+), 78 deletions(-) diff --git a/httemplate/search/report_receivables.cgi b/httemplate/search/report_receivables.cgi index b4d41dda8..872cb7dc6 100755 --- a/httemplate/search/report_receivables.cgi +++ b/httemplate/search/report_receivables.cgi @@ -73,61 +73,6 @@ ) %> -<%once> - -sub owed { - my($start, $end, %opt) = @_; - - my @where = (); - - #handle start and end ranges - - my $str2time = str2time_sql; - - #24h * 60m * 60s - push @where, "cust_bill._date <= $str2time now() ) - ". ($start * 86400) - if $start; - - push @where, "cust_bill._date > $str2time now() ) - ". ($end * 86400) - if $end; - - #handle 'cust' option - - push @where, "cust_main.custnum = cust_bill.custnum" - if $opt{'cust'}; - - #handle 'agentnum' option - my $join = ''; - if ( $opt{'agentnum'} ) { - $join = 'LEFT JOIN cust_main USING ( custnum )'; - push @where, "agentnum = '$opt{'agentnum'}'"; - } - - my $where = scalar(@where) ? 'WHERE '.join(' AND ', @where) : ''; - - my $as = $opt{'noas'} ? '' : "as owed_${start}_$end"; - - my $charged = < <%init> die "access denied" @@ -158,22 +103,29 @@ my $packages_cols = <param('days') =~ /^\s*(\d+)\s*$/ ) { - $days = $1; -} +my @where = (); + +unless ( $cgi->param('all_customers') ) { + + my $days = 0; + if ( $cgi->param('days') =~ /^\s*(\d+)\s*$/ ) { + $days = $1; + } -#my $where = "where ". owed(0, 0, 'cust'=>1, 'noas'=>1). " > 0"; -my $where = "where ". owed($days, 0, 'cust'=>1, 'noas'=>1). " > 0"; + push @where, owed($days, 0, 'cust'=>1, 'noas'=>1). " > 0"; + +} -my $agentnum = ''; if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) { - $agentnum = $1; - $where .= " AND agentnum = '$agentnum' "; + my $agentnum = $1; + push @where, "agentnum = $agentnum"; } #here is the agent virtualization -$where .= ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql; +push @where, $FS::CurrentUser::CurrentUser->agentnums_sql; + +my $where = join(' AND ', @where); +$where = "WHERE $where" if $where; my $count_sql = "select count(*) from cust_main $where"; @@ -184,8 +136,10 @@ my $sql_query = { 'extra_sql' => "$where order by coalesce(lower(company), ''), lower(last)", }; +my $join = 'LEFT JOIN cust_main USING ( custnum )'; + my $total_sql = "select ". - join(',', map owed( @$_, 'agentnum'=>$agentnum ), @ranges ); + join(',', map owed( @$_, join=>$join, where=>\@where ), @ranges); my $total_sth = dbh->prepare($total_sql) or die dbh->errstr; $total_sth->execute or die "error executing $total_sql: ". $total_sth->errstr; @@ -197,3 +151,56 @@ my $money_char = $conf->config('money_char') || '$'; my $clink = [ "${p}view/cust_main.cgi?", 'custnum' ]; +<%once> + +sub owed { + my($start, $end, %opt) = @_; + + my @where = (); + + #handle start and end ranges + + my $str2time = str2time_sql; + + #24h * 60m * 60s + push @where, "cust_bill._date <= $str2time now() ) - ". ($start * 86400) + if $start; + + push @where, "cust_bill._date > $str2time now() ) - ". ($end * 86400) + if $end; + + #handle 'cust' option + push @where, "cust_main.custnum = cust_bill.custnum" + if $opt{'cust'}; + + #handle 'join' option + my $join = $opt{'join'} || ''; + + #handle 'where' option + push @where, @{ $opt{'where'} } if $opt{'where'}; + + my $where = scalar(@where) ? 'WHERE '.join(' AND ', @where) : ''; + + my $as = $opt{'noas'} ? '' : "as owed_${start}_$end"; + + my $charged = < diff --git a/httemplate/search/report_receivables.html b/httemplate/search/report_receivables.html index bb23f1f87..56097534f 100755 --- a/httemplate/search/report_receivables.html +++ b/httemplate/search/report_receivables.html @@ -1,23 +1,32 @@ <% include('/elements/header.html', 'Accounts Receivable Aging Summary' ) %> -
+ - +
- <% include( '/elements/tr-select-agent.html' ) %> + + + - - - - + <% include( '/elements/tr-select-agent.html' ) %> + + + + + -
+ Search options +
Over days
Customers + All customers (even those without an outstanding balance)
+ Customers with a balance over days old +
+ -
-
+
+ + +<% include('/elements/footer.html') %> - - <%init> die "access denied" -- 2.11.0