diff options
author | ivan <ivan> | 2010-06-17 02:08:53 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-06-17 02:08:53 +0000 |
commit | 8966833a87b9a002c9d72c56832e35b55628dc81 (patch) | |
tree | 5ebe5128d453eb940580b1876b2218d1db8d87be /httemplate/view | |
parent | 259921ee5e89a68fc79b2a358643c558ebb4fdaa (diff) |
Add "View customers of all agents" access rights, RT#7010
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/cust_main/misc.html | 3 | ||||
-rw-r--r-- | httemplate/view/prospect_main.html | 3 | ||||
-rw-r--r-- | httemplate/view/svc_acct/tr.html | 9 |
3 files changed, 4 insertions, 11 deletions
diff --git a/httemplate/view/cust_main/misc.html b/httemplate/view/cust_main/misc.html index b98e9dc3e..8bcab0df5 100644 --- a/httemplate/view/cust_main/misc.html +++ b/httemplate/view/cust_main/misc.html @@ -10,7 +10,8 @@ <TD BGCOLOR="#ffffff"><FONT COLOR="#<% $cust_main->statuscolor %>"><B><% ucfirst($cust_main->status) %></B></FONT></TD> </TR> -%unless ( scalar(@agentnums) == 1 ) { +%unless ( scalar(@agentnums) == 1 +% && !$curuser->access_right('View customers of all agents') ) { % my $agent = qsearchs('agent',{ 'agentnum' => $cust_main->agentnum } ); <TR> <TD ALIGN="right">Agent</TD> diff --git a/httemplate/view/prospect_main.html b/httemplate/view/prospect_main.html index 9883e6766..9517e3920 100644 --- a/httemplate/view/prospect_main.html +++ b/httemplate/view/prospect_main.html @@ -14,7 +14,8 @@ <TD BGCOLOR="#FFFFFF"><B><% $prospectnum %></B></TD> </TR> -%unless ( scalar(@agentnums) == 1 ) { +%unless ( scalar(@agentnums) == 1 +% && !$curuser->access_right('View customers of all agents') ) { % my $agent = qsearchs('agent',{ 'agentnum' => $prospect_main->agentnum } ); <TR> <TD ALIGN="right">Agent</TD> diff --git a/httemplate/view/svc_acct/tr.html b/httemplate/view/svc_acct/tr.html deleted file mode 100644 index e2ec7d42f..000000000 --- a/httemplate/view/svc_acct/tr.html +++ /dev/null @@ -1,9 +0,0 @@ -<TR> - <TD ALIGN="right"><% $opt{'label'} %></TD> - <TD BGCOLOR="#ffffff"><% $opt{'value'} %></TD> -</TR> -<%init> - -my %opt = @_; - -</%init> |