summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-02-16 17:35:49 -0800
committerIvan Kohler <ivan@freeside.biz>2014-02-16 17:35:49 -0800
commit4d865ba973da989a94625d58a61b1b1ce38ecaf8 (patch)
treef7b8fb724a7cb0118d88c80000d694c3d999fdbf
parente2bbbc8aaec0a4c997bed670a083e53954e399fc (diff)
credit limit for CDR prerating, RT#27267
-rw-r--r--httemplate/elements/menu.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html
index de28bd6cf..cfc262ee5 100644
--- a/httemplate/elements/menu.html
+++ b/httemplate/elements/menu.html
@@ -376,10 +376,12 @@ if( $curuser->access_right('Financial reports') ) {
} # else $report_financial contains nothing.
tie my %report_logs, 'Tie::IxHash';
- $report_logs{'System log'} = [ $fsurl.'search/log.html', 'View system events and debugging information.' ],
+$report_logs{'Credit limit incidents'} = [ $fsurl.'search/report_cust_main_credit_limit.html', '' ]
+ if $curuser->access_right('List rating data');
+$report_logs{'System log'} = [ $fsurl.'search/log.html', 'View system events and debugging information.' ],
if $curuser->access_right('View system logs')
|| $curuser->access_right('Configuration');
- $report_logs{'Outgoing messages'} = [ $fsurl.'search/cust_msg.html', 'View outgoing message log' ]
+$report_logs{'Outgoing messages'} = [ $fsurl.'search/cust_msg.html', 'View outgoing message log' ]
if $curuser->access_right('View email logs')
|| $curuser->access_right('Configuration');