summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-agent_type.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/tr-select-agent_type.html')
-rw-r--r--httemplate/elements/tr-select-agent_type.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/httemplate/elements/tr-select-agent_type.html b/httemplate/elements/tr-select-agent_type.html
deleted file mode 100644
index 1b0dfd4..0000000
--- a/httemplate/elements/tr-select-agent_type.html
+++ /dev/null
@@ -1,39 +0,0 @@
-% 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;
-}
-
-</%init>