From 4b5c6ba830fe2845a0055e1fcf5af0c7e8b8cd0c Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 29 Sep 2007 02:17:48 +0000 Subject: fix ambiguous agentnum errors in cust_event.html & report_tax.cgi (provide a table option in access_user::agentnums_sql so this is easy to fix for other reports too) --- httemplate/search/cust_event.html | 6 ++---- httemplate/search/report_tax.cgi | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'httemplate') diff --git a/httemplate/search/cust_event.html b/httemplate/search/cust_event.html index f9cce46ca..dc6fd0582 100644 --- a/httemplate/search/cust_event.html +++ b/httemplate/search/cust_event.html @@ -151,7 +151,7 @@ my $title = $cgi->param('failed') my @search = (); if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) { - push @search, "agentnum = $1"; + push @search, "cust_main.agentnum = $1"; #my $agent = qsearchs('agent', { 'agentnum' => $1 } ); #die "unknown agentnum $1" unless $agent; } @@ -183,9 +183,7 @@ if ( $cgi->param('pkgnum') =~ /^(\d+)$/ ) { } #here is the agent virtualization -my $agent_sql = $curuser->agentnums_sql; -$agent_sql =~ s/agentnum/cust_main.agentnum/g; -push @search, $agent_sql; +push @search, $curuser->agentnums_sql( 'table' => 'cust_main' ); my $where = 'WHERE '. join(' AND ', @search ); diff --git a/httemplate/search/report_tax.cgi b/httemplate/search/report_tax.cgi index e97480540..bb9c8f433 100755 --- a/httemplate/search/report_tax.cgi +++ b/httemplate/search/report_tax.cgi @@ -226,7 +226,7 @@ if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) { my $agent = qsearchs('agent', { 'agentnum' => $1 } ); die "agent not found" unless $agent; $agentname = $agent->agent; - $where .= ' AND agentnum = '. $agent->agentnum; + $where .= ' AND cust_main.agentnum = '. $agent->agentnum; } my $gotcust = " -- cgit v1.2.1