blob: 515a11d48c27e9f188ab930d8ba064852b34f3b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<%doc>
Example:
include( '/elements/tr-select-agent.html',
#recommended to keep things "sticky" on errors
'curr_value' => $curr_value,
##
# optional
##
'label' => 'Agent for this thing',
'empty_label' => 'Select agent', #override default
'disable_empty' => 1,
#set to 'None' or something to override default of showing all agents
#for employees w/ 'View customers of all agents' right
viewall_right => 'None',
);
</%doc>
% if ( scalar(@agents) == 1 ) {
<INPUT TYPE="hidden" NAME="<% $opt{'field'} || 'agentnum' %>" VALUE="<% $agents[0]->agentnum %>">
%# YUCK. empty row so we don't throw g_row in edit.html off :/
<TR>
</TR>
% } else {
<TR>
<TD ALIGN="right"><% $opt{'label'} || 'Agent' %></TD>
<TD <% $colspan %>>
<% include( '/elements/select-agent.html',
'curr_value' => $agentnum,
'agents' => \@agents,
%opt,
)
%>
</TD>
</TR>
% }
<%init>
my %opt = @_;
my $agentnum = $opt{'curr_value'} || $opt{'value'};
my @agents =
$opt{'agents'}
? @{ $opt{'agents'} }
: $FS::CurrentUser::CurrentUser->agents(
'viewall_right' => $opt{'viewall_right'},
);
my $colspan = $opt{'colspan'} ? 'COLSPAN="'.$opt{'colspan'}.'"' : '';
</%init>
|