% include( '/elements/select-table.html',
                 'table'       => 'agent',
                 'name_col'    => 'agent',
                 'value'       => $agentnum || '',
                 'empty_label' => 'all',
                 'hashref'     => { 'disabled' => '' },
                 'order_by'    => ' ORDER BY agent',
                 'disable_empty' => $disable_empty,
                 %opt,
             )
%>
<%init>
my %opt = @_;
my $agentnum = $opt{'curr_value'} || $opt{'value'};
$opt{'records'} = delete $opt{'agents'}
  if $opt{'agents'};
my $curuser = $FS::CurrentUser::CurrentUser;
my $disable_empty = 1;
if ( $opt{'agent_null_right'} &&
     $curuser->access_right($opt{'agent_null_right'})
   )
{
  $disable_empty--;
}
%init>