diff options
author | Mark Wells <mark@freeside.biz> | 2016-06-09 15:56:36 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-06-09 15:56:54 -0700 |
commit | d02f1d8fb338e4dd1b401892b3408a65cad3b4d4 (patch) | |
tree | 2b5852476004135b0f6fde2b4b19f2b610e09886 /httemplate/elements/menu.html | |
parent | ac44c24787eb093e47b92ee9939d003acf8464e7 (diff) |
remove "failed billing events" report, and add "completed with an error" status search, #42637
Diffstat (limited to 'httemplate/elements/menu.html')
-rw-r--r-- | httemplate/elements/menu.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index c385cb4c7..93bebb17a 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -320,7 +320,6 @@ tie my %report_ticketing, 'Tie::IxHash', ; tie my %report_bill_event, 'Tie::IxHash', - 'All billing events' => [ $fsurl.'search/report_cust_event.html', 'All billing events for a date range' ], 'Billing event errors' => [ $fsurl.'search/report_cust_event.html?failed=1', 'Failed credit cards, processor or printer problems, etc.' ], ; @@ -404,7 +403,7 @@ tie my %report_payable, 'Tie::IxHash', ; tie my %report_logs, 'Tie::IxHash'; -$report_logs{'Billing events'} = [ \%report_bill_event, 'Billing events' ] +$report_logs{'Billing events'} = [ $fsurl.'search/report_cust_event.html', 'Search billing events by date and status' ] if $curuser->access_right('Billing event reports'); $report_logs{'Credit limit incidents'} = [ $fsurl.'search/report_cust_main_credit_limit.html', '' ] if $curuser->access_right('List rating data'); |