summaryrefslogtreecommitdiff
path: root/FS/FS/Report/Table
diff options
context:
space:
mode:
authormark <mark>2010-05-21 19:09:04 +0000
committermark <mark>2010-05-21 19:09:04 +0000
commitf360579dd091f1adf9cea1062aa06afdf5bff42b (patch)
tree34d0757543c13865a4accd8c333941873469d658 /FS/FS/Report/Table
parent124daa78d5659ed9def66982b0a7600f4088f289 (diff)
RT#8504: option to aggregate agents on sales report
Diffstat (limited to 'FS/FS/Report/Table')
-rw-r--r--FS/FS/Report/Table/Monthly.pm10
1 files changed, 6 insertions, 4 deletions
diff --git a/FS/FS/Report/Table/Monthly.pm b/FS/FS/Report/Table/Monthly.pm
index 4b866c4..620af08 100644
--- a/FS/FS/Report/Table/Monthly.pm
+++ b/FS/FS/Report/Table/Monthly.pm
@@ -1,13 +1,14 @@
package FS::Report::Table::Monthly;
use strict;
-use vars qw( @ISA );
+use vars qw( @ISA $DEBUG );
use Time::Local;
use FS::UID qw( dbh );
use FS::Report::Table;
use FS::CurrentUser;
@ISA = qw( FS::Report::Table );
+$DEBUG = 0; # turning this on will trace all SQL statements, VERY noisy
=head1 NAME
@@ -378,12 +379,12 @@ sub cust_bill_pkg {
}
if ( $opt{'use_override'} ) {
- $where = "(
+ $where = "AND (
part_pkg.classnum $comparison AND pkgpart_override IS NULL OR
override.classnum $comparison AND pkgpart_override IS NOT NULL
)";
} else {
- $where = "part_pkg.classnum $comparison";
+ $where = "AND part_pkg.classnum $comparison";
}
}
@@ -404,7 +405,7 @@ sub cust_bill_pkg {
LEFT JOIN part_pkg USING ( pkgpart )
LEFT JOIN part_pkg AS override ON pkgpart_override = override.pkgpart
WHERE pkgnum != 0
- AND $where
+ $where
AND ". $self->in_time_period_and_agent($speriod, $eperiod, $agentnum);
if ($opt{use_usage} && $opt{use_usage} eq 'recurring') {
@@ -569,6 +570,7 @@ sub in_time_period_and_agent {
sub scalar_sql {
my( $self, $sql ) = ( shift, shift );
my $sth = dbh->prepare($sql) or die dbh->errstr;
+ warn "FS::Report::Table::Monthly\n$sql\n" if $DEBUG;
$sth->execute
or die "Unexpected error executing statement $sql: ". $sth->errstr;
$sth->fetchrow_arrayref->[0] || 0;