blob: 54069a5cb12ca95c7b22a213c6a8a95697829f74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<% include( '/elements/select-table.html',
'table' => 'agent',
'name_col' => 'agent',
'value' => $agentnum || '',
'empty_label' => 'all',
'hashref' => { 'disabled' => '' },
'extra_sql' => ' AND '.
$FS::CurrentUser::CurrentUser->agentnums_sql.
' ORDER BY agent',
%opt,
)
%>
<%init>
my %opt = @_;
my $agentnum = $opt{'curr_value'} || $opt{'value'};
$opt{'records'} = delete $opt{'agents'}
if $opt{'agents'};
</%init>
|