diff options
author | jeff <jeff> | 2007-11-03 00:55:24 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-11-03 00:55:24 +0000 |
commit | 636fcaf6066218b9edceec093de6ae4ee69bd1e0 (patch) | |
tree | 28d50703fb8790bcce8a8911c4e6cf206eef19f3 /httemplate/elements | |
parent | 1e4f6b652cf68000c11d7defbb92bbc5a6acd057 (diff) |
new customer report/flattened package report (ticket 1428)
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/menu.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index 7b39277c2..1d72bbbe6 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -66,6 +66,11 @@ tie my %report_customers_lists, 'Tie::IxHash', $report_customers_lists{'by active trouble tickets'} = [ $fsurl. 'search/cust_main.cgi?browse=tickets', '' ] if $conf->config('ticket_system'); +$report_customers_lists{'advanced customer reports'} = [ $fsurl. 'search/report_cust_main.html', '' ] + if ( $curuser->access_right('List customers') && + $curuser->access_right('List packages') + ); + tie my %report_customers_search, 'Tie::IxHash'; $report_customers_search{'by ordering employee'} = [ $fsurl. 'search/cust_main-otaker.cgi' ] if $curuser->access_right('Configuration'); @@ -191,6 +196,7 @@ $report_menu{'Financial'} = [ \%report_financial, 'Financial reports' ] tie my %tools_importing, 'Tie::IxHash', 'Import customers from CSV file' => [ $fsurl.'misc/cust_main-import.cgi', '' ], + 'Import payments from CSV file' => [ $fsurl.'misc/cust_pay-import.cgi', '' ], 'Import customer notes from CSV file' => [ $fsurl.'misc/cust_main_note-import.html', '' ], 'Import one-time charges from CSV file' => [ $fsurl.'misc/cust_main-import_charges.cgi', '' ], 'Import Call Detail Records (CDRs) from CSV file' => [ $fsurl.'misc/cdr-import.html', '' ], |