bug ya bug resulting from agent-virtualized packages
authorivan <ivan>
Mon, 29 Oct 2007 12:04:52 +0000 (12:04 +0000)
committerivan <ivan>
Mon, 29 Oct 2007 12:04:52 +0000 (12:04 +0000)
httemplate/search/cust_pkg.cgi

index 941a2e7..5c209eb 100755 (executable)
@@ -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) : '';