summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2011-04-20 21:17:28 +0000
committerivan <ivan>2011-04-20 21:17:28 +0000
commit849a709d89e78bec1ab19997b75de1b574969f1f (patch)
tree36700dc2409550c483d331081b048acc4f977a98
parent1b59bf2274ead499f714a57f862811e223c2a9d5 (diff)
fix agent type condition, RT#12539
-rw-r--r--httemplate/elements/tr-select-agent_type.html26
1 files changed, 7 insertions, 19 deletions
diff --git a/httemplate/elements/tr-select-agent_type.html b/httemplate/elements/tr-select-agent_type.html
index 1b0dfd445..3fcbcd388 100644
--- a/httemplate/elements/tr-select-agent_type.html
+++ b/httemplate/elements/tr-select-agent_type.html
@@ -1,39 +1,27 @@
-% if ( scalar(@agent_types) == 1 ) {
-
- <INPUT TYPE="hidden" NAME="<% $opt{'field'} || 'typenum' %>" VALUE="<% $agent_types[0]->typenum %>">
-
-% } else {
+%#% if ( scalar(@agent_types) == 1 ) {
+%#
+%# <INPUT TYPE="hidden" NAME="<% $opt{'field'} || 'typenum' %>" VALUE="<% $agent_types[0]->typenum %>">
+%#
+%#% } else {
<TR>
<TD ALIGN="right"><% $opt{'label'} || 'Agent Type' %></TD>
<TD>
<% include( '/elements/select-agent_type.html',
'curr_value' => $typenum,
- 'agent_types' => \@agent_types,
%opt,
)
%>
</TD>
</TR>
-% }
+%#% }
<%init>
my %opt = @_;
my $typenum = $opt{'curr_value'} || $opt{'value'};
-my @agent_types = ();
-if ( $opt{'agent_types'} ) {
- #@agents = @{ $opt{'agents'} };
-
- #here is the agent virtualization
-# my $agentnums_href = $FS::CurrentUser::CurrentUser->agentnums_href;
-# @agent_types = grep $agentnums_href->{$_->agentnum}, @{ $opt{'agent_types'} };
-
- delete $opt{'agent_types'};
-} else {
-# @agents = $FS::CurrentUser::CurrentUser->agents;
-}
+delete $opt{'agent_types'} if $opt{'agent_types'}; #?
</%init>