summaryrefslogtreecommitdiff
path: root/httemplate/elements
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2019-04-12 13:16:57 -0400
committerChristopher Burger <burgerc@freeside.biz>2019-04-12 13:16:57 -0400
commit7afd80e3dfcaa34b04f693c40949d7408f7a7ac1 (patch)
treecdfb8eee2c2668d1b02d6d9c5671eca9e959143f /httemplate/elements
parent7ff902ccf499a8a2e8598d653dd958cf6a364b26 (diff)
RT# 79913 - added ability to mass transfer customers to new agent
Diffstat (limited to 'httemplate/elements')
-rw-r--r--httemplate/elements/menubar.html7
-rw-r--r--httemplate/elements/select-agent.html3
2 files changed, 8 insertions, 2 deletions
diff --git a/httemplate/elements/menubar.html b/httemplate/elements/menubar.html
index c149043..ffe83ec 100644
--- a/httemplate/elements/menubar.html
+++ b/httemplate/elements/menubar.html
@@ -52,7 +52,12 @@ while (@_) {
}
- push @html, qq!<A HREF="$url_base$url" $style>$item</A>!;
+ if ($item eq 'popup') {
+ push @html, $url;
+ }
+ else {
+ push @html, qq!<A HREF="$url_base$url" $style>$item</A>!;
+ }
}
diff --git a/httemplate/elements/select-agent.html b/httemplate/elements/select-agent.html
index fd2c57e..2bd0095 100644
--- a/httemplate/elements/select-agent.html
+++ b/httemplate/elements/select-agent.html
@@ -3,7 +3,7 @@
'name_col' => 'agent',
'value' => $agentnum || '',
'agent_virt' => 1,
- 'empty_label' => emt('all'),
+ 'empty_label' => $empty_label,
'hashref' => { 'disabled' => '' },
'order_by' => ' ORDER BY agent',
'disable_empty' => $disable_empty,
@@ -18,6 +18,7 @@ $opt{'records'} = delete $opt{'agents'}
if $opt{'agents'};
my $curuser = $FS::CurrentUser::CurrentUser;
+my $empty_label = $opt{'empty_label'} ? $opt{'empty_label'} : 'all';
my $disable_empty = 0;
if ( $opt{'agent_null_right'} ) {
if ( $curuser->access_right($opt{'agent_null_right'}) ) {