enhance contacts: contact classes, RT#16819
[freeside.git] / httemplate / elements / menu.html
index d08589a..f096dd8 100644 (file)
@@ -14,6 +14,7 @@
 
 % unless ( $opt{'nocss'} ) {
   <link href="<%$fsurl%>elements/freeside.css" type="text/css" rel="stylesheet">
+  <link href="<%$fsurl%>elements/freeside-print.css" type="text/css" rel="stylesheet" media="print">
 % }
 <link href="<%$fsurl%>elements/freeside-menu.css" type="text/css" rel="stylesheet">
 
@@ -107,6 +108,7 @@ tie my %report_customers, 'Tie::IxHash';
 $report_customers{'List customers'} = [ \%report_customers_lists, 'List customers' ]
   if $curuser->access_right('List customers');
 $report_customers{'Zip code distribution'}     = [ $fsurl. 'search/report_cust_main-zip.html', 'Zip codes by number of customers' ];
+$report_customers{'Customer signup report'}       = [ $fsurl. 'graph/report_cust_signup.html', 'New customer signups by date' ],
 $report_customers{'Advanced customer reports'} = [ $fsurl. 'search/report_cust_main.html', 'by status, signup date, agent, etc.' ]
   if    $curuser->access_right('List customers')
      && $curuser->access_right('List packages');
@@ -252,6 +254,8 @@ tie my %report_inventory, 'Tie::IxHash',
 tie my %report_rating, 'Tie::IxHash',
   'RADIUS sessions' => [ $fsurl.'search/sqlradius.html', '' ],
   'Call Detail Records (CDRs)' => [ $fsurl.'search/report_cdr.html', '' ],
+  'Unrateable CDRs' => [ $fsurl.'search/cdr.html?freesidestatus=failed'.
+                                               ';cdrbatchnum=_ALL_' ],
   'Time worked' => [ $fsurl.'search/report_rt_transaction.html', '' ],
   'Time worked summary' => [ $fsurl.'search/report_rt_ticket.html', '' ],
 ;
@@ -429,6 +433,7 @@ tie my %config_dialup, 'Tie::IxHash',
 ;
 
 tie my %config_broadband, 'Tie::IxHash',
+  'Towers'         => [ $fsurl.'browse/tower.html', 'Towers and sectors' ],
   'Routers'        => [ $fsurl.'browse/router.cgi', 'Broadband access routers' ],
   'Address blocks' => [ $fsurl.'browse/addr_block.cgi', 'Manage address blocks and block assignments to broadband routers' ],
 ;
@@ -450,8 +455,8 @@ if ( $curuser->access_right('Configuration') ) {
 }
 $config_export_svc{'Dialup'}  = [ \%config_dialup, ''    ]
   if $curuser->access_right('Dialup configuration');
-$config_export_svc{'Broadband'} = [ \%config_broadband, ''    ]
-  if $curuser->access_right('Wireless broadband configuration');
+$config_export_svc{'Wireless broadband'} = [ \%config_broadband, ''    ]
+  if $curuser->access_right('Broadband configuration');
 $config_export_svc{'Phone'}  = [ \%config_phone, ''    ]
   if $curuser->access_right('Configuration');
 $config_export_svc{'RADIUS'} = [ \%config_radius, '' ]
@@ -486,9 +491,11 @@ tie my %config_cust, 'Tie::IxHash',
   'Customer tags'       => [ $fsurl.'browse/part_tag.html', '' ],
   'Customer classes'    =>  [ $fsurl.'browse/cust_class.html', 'Customer classes define groups of customers for reporting.' ],
   'Customer categories' =>  [ $fsurl.'browse/cust_category.html', 'Customer categories define groups of customer classes.' ],
+  'separator'     => '', #its a separator!
+  'Contact classes'    =>  [ $fsurl.'browse/contact_class.html', 'Contact classes define types for contacts.' ],
 ;
   
-$config_cust{'Customer note classes'} = [ $fsurl.'browse/cust_note_class.html', 'Customer note classes define groups of notes for reporting.' ]
+$config_cust{'Note classes'} = [ $fsurl.'browse/cust_note_class.html', 'Note classes define groups of customer notes for reporting.' ]
     if ($conf->exists('note-classes') && $conf->config('note-classes') > 0);
 
 tie my %config_agent, 'Tie::IxHash',
@@ -571,6 +578,7 @@ if ( $curuser->access_right('Configuration' ) ) {
     'Resellers'     => [ \%config_agent, '' ],
     'separator2'    => '', #its a separator!
     'Customers'     => [ \%config_cust, '' ],
+    #or this? 'Customers and Contacts' => [ \%config_cust, '' ],
   );
 }
 $config_menu{'Packages'} = [ \%config_pkg, '' ]