X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fmenu.html;h=c03dba5d44940ebeab037ddfb4a314661924146b;hb=619b5649552e11eeef2cae712b923d7e0f6d3f43;hp=7729e06e420f12ec4bd06607a7a124b22349834e;hpb=c5c8669beae1c3d377fce51bdcbf917994f66175;p=freeside.git diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index 7729e06e4..c03dba5d4 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -345,6 +345,7 @@ tie my %report_sales, 'Tie::IxHash', 'Sales with Advertising Source' => [ $fsurl.'search/report_cust_bill_pkg_referral.html' ], 'Agent Commissions' => [ $fsurl.'search/report_agent_commission.html' ], 'Sales Person Commissions' => [ $fsurl.'search/report_sales_commission.html' ], + 'Sales Person Commission per package' => [ $fsurl.'search/report_sales_commission_pkg.html' ], ; tie my %report_financial, 'Tie::IxHash'; @@ -375,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'); @@ -491,6 +494,7 @@ $tools_menu{'Exporting'} = [ \%tools_exporting, 'Export tools' ] tie my %config_employees, 'Tie::IxHash', 'Employees' => [ $fsurl.'browse/access_user.html', 'Setup internal users' ], 'Employee groups' => [ $fsurl.'browse/access_group.html', 'Employee groups allow you to control access to the backend' ], + 'Installer availability' => [ $fsurl.'browse/sched_item.html', 'Installer availability' ], ; tie my %config_dialup, 'Tie::IxHash', @@ -569,6 +573,10 @@ if ( $curuser->access_right('Configuration') ) { $config_pkg{'Package report classes'} = [ $fsurl.'browse/part_pkg_report_option.html', 'Package classes define optional groups of packages for reporting only.' ]; #eo package grouping sub-menu + if ( $curuser->access_right([ 'Edit fee definitions', + 'Edit global fee definitions' ]) ) { + $config_pkg{'Fees'} = [ $fsurl.'browse/part_fee.html', '' ]; + } $config_pkg{'Discounts'} = [ $fsurl.'browse/discount.html', '' ]; $config_pkg{'Discount classes'} = [ $fsurl.'browse/discount_class.html', '' ]; $config_pkg{'Cancel/Suspend Reasons'} = [ \%config_pkg_reason, '' ];