X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fsearch%2Fcust_pkg.cgi;h=5c209eba77ff63f6d215721a2eb219b7d63cda6e;hp=941a2e76cb7ef4172b7065982e67aaccdaedf485;hb=4297bc81fdabab111d1231de807f14014f65d620;hpb=cef858577f15128880dacbc944f20aa3142919ec diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index 941a2e76c..5c209eba7 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -127,7 +127,7 @@ my @where = (); if ( $cgi->param('agentnum') =~ /^(\d+)$/ and $1 ) { push @where, - "agentnum = $1"; + "cust_main.agentnum = $1"; } ## @@ -274,7 +274,7 @@ if ( $cgi->param('magic') && ## # here is the agent virtualization -push @where, $FS::CurrentUser::CurrentUser->agentnums_sql; +push @where, $FS::CurrentUser::CurrentUser->agentnums_sql('table'=>'cust_main'); my $extra_sql = scalar(@where) ? ' WHERE '. join(' AND ', @where) : '';