eliminate filtering of info from COMP customers on financial reports, RT#8787
authorivan <ivan>
Tue, 29 Jun 2010 05:23:16 +0000 (05:23 +0000)
committerivan <ivan>
Tue, 29 Jun 2010 05:23:16 +0000 (05:23 +0000)
httemplate/graph/cust_bill_pkg.cgi
httemplate/search/cust_bill_pkg.cgi
httemplate/search/report_prepaid_income.cgi

index 224fbbb..6467020 100644 (file)
@@ -19,7 +19,7 @@
 die "access denied"
   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
 
-my $link = "${p}search/cust_bill_pkg.cgi?nottax=1;include_comp_cust=1";
+my $link = "${p}search/cust_bill_pkg.cgi?nottax=1";
 my $bottom_link = "$link;";
 
 my $use_override         = $cgi->param('use_override')         ? 1 : 0;
index 6a0b600..86b0238 100644 (file)
@@ -137,9 +137,6 @@ my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
 push @where, "_date >= $beginning",
              "_date <= $ending";
 
-push @where , " payby != 'COMP' "
-  unless $cgi->param('include_comp_cust');
-
 if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
   push @where, "cust_main.agentnum = $1";
 }
index bfb699b..2fe5b6f 100644 (file)
@@ -108,10 +108,6 @@ my @where = ();
 #here is the agent virtualization
 push @where, $curuser->agentnums_sql( 'table'=>'cust_main' );
 
-#well, because cust_bill_pkg.cgi has it and without it the numbers don't match..
-push @where , " payby != 'COMP' "
-  unless $cgi->param('include_comp_cust');
-
 my %total = ();
 my %total_legacy = ();
 foreach my $agentnum (@agentnums) {