From: ivan Date: Sat, 14 Feb 2009 00:41:24 +0000 (+0000) Subject: clean up select-agent agent virtualization, RT#1405 X-Git-Tag: root_of_webpay_support~60 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=196adec5da84e3932aa6b2654b6f1532d833616b clean up select-agent agent virtualization, RT#1405 --- diff --git a/httemplate/browse/addr_block.cgi b/httemplate/browse/addr_block.cgi index 241bb937f..1bbcdcbc1 100644 --- a/httemplate/browse/addr_block.cgi +++ b/httemplate/browse/addr_block.cgi @@ -92,8 +92,7 @@ my $html_foot = qq( / ); $html_foot .= include( '/elements/select-agent.html', - 'agent_virt' => 1, - 'agent_null_right' => 'Broadband global configuration', + 'agent_null_right' => 'Broadband global configuration', ); $html_foot .= qq( diff --git a/httemplate/elements/select-agent.html b/httemplate/elements/select-agent.html index d8ab50080..897c98248 100644 --- a/httemplate/elements/select-agent.html +++ b/httemplate/elements/select-agent.html @@ -1,10 +1,11 @@ <% include( '/elements/select-table.html', - 'table' => 'agent', - 'name_col' => 'agent', - 'value' => $agentnum || '', - 'empty_label' => 'all', - 'hashref' => { 'disabled' => '' }, - 'order_by' => ' ORDER BY agent', + 'table' => 'agent', + 'name_col' => 'agent', + 'value' => $agentnum || '', + 'agent_virt' => 1, + 'empty_label' => 'all', + 'hashref' => { 'disabled' => '' }, + 'order_by' => ' ORDER BY agent', 'disable_empty' => $disable_empty, %opt, ) @@ -18,12 +19,13 @@ $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--; +my $disable_empty = 0; +if ( $opt{'agent_null_right'} ) { + if ( $curuser->access_right($opt{'agent_null_right'}) ) { + $disable_empty = 0; + } else { + $disable_empty = 1; + } } diff --git a/httemplate/elements/tr-select-agent.html b/httemplate/elements/tr-select-agent.html index 44df3fc7d..fcfa9f300 100644 --- a/httemplate/elements/tr-select-agent.html +++ b/httemplate/elements/tr-select-agent.html @@ -26,15 +26,8 @@ my %opt = @_; my $agentnum = $opt{'curr_value'} || $opt{'value'}; -my @agents; -if ( $opt{'agents'} ) { - #@agents = @{ $opt{'agents'} }; - #here is the agent virtualization - my $agentnums_href = $FS::CurrentUser::CurrentUser->agentnums_href; - @agents = grep $agentnums_href->{$_->agentnum}, @{ $opt{'agents'} }; - delete $opt{'agents'}; -} else { - @agents = $FS::CurrentUser::CurrentUser->agents; -} +my @agents = $opt{'agents'} + ? @{ $opt{'agents'} } + : $FS::CurrentUser::CurrentUser->agents;