9b5478e2bf6c7260ca59be25234c0007cdce7ce5
[freeside.git] / httemplate / elements / menu.html
1 <script type="text/javascript" src="<%$fsurl%>elements/cssexpr.js"></script>
2
3 % if ( $opt{'position'} eq 'top' ) {
4
5   <script type="text/javascript" src="<%$fsurl%>elements/xmenu.top.js"></script>
6   <link href="<%$fsurl%>elements/xmenu.top.css" type="text/css" rel="stylesheet">
7
8 % } else {  # elsif ( $opt{'position'} eq 'left' ) {
9
10   <script type="text/javascript" src="<%$fsurl%>elements/xmenu.js"></script>
11   <link href="<%$fsurl%>elements/xmenu.css" type="text/css" rel="stylesheet">
12
13 % }
14
15 % unless ( $opt{'nocss'} ) {
16   <link href="<%$fsurl%>elements/freeside.css" type="text/css" rel="stylesheet">
17   <link href="<%$fsurl%>elements/freeside-print.css" type="text/css" rel="stylesheet" media="print">
18 % }
19 <link href="<%$fsurl%>elements/freeside-menu.css" type="text/css" rel="stylesheet">
20
21 <SCRIPT TYPE="text/javascript">
22
23 % my $fs_popup = include( '/elements/popup_link_onclick.html',
24 %                           'action'      => $fsurl.'docs/about.html',
25 %                           'label'       => emt('Freeside'),
26 %                           'style'       => 'color:#999999',
27 %                           'actionlabel' => emt('About'),
28 %                           'width'       => 300,
29 %                           'height'      => 375,
30 %                           'color'       => '#7e0079',
31 %                           #'scrolling'   => 'no',
32 %                       );
33 % $fs_popup =~ s/return false;//;
34   function about_freeside() {
35     <% $fs_popup |n %>
36   }
37
38   webfxMenuImagePath      = "<%$fsurl%>images/";
39   webfxMenuUseHover       = 1;
40   webfxMenuShowTime       = 300;
41   webfxMenuHideTime       = 500;
42
43   var myBar = new WebFXMenuBar;
44
45 % if ( $mobile ) {
46 %   
47 %   my( $subhtml, $submenuname ) = submenu(\%menu, 'Freeside');
48     <% $subhtml |n %>
49     myBar.add(new WebFXMenuButton("Freeside", 
50                                   null,
51                                   null,
52                                   <% $submenuname |n %>));
53 % }
54 % else {
55 %   foreach my $item ( keys %menu ) {
56 %
57 %     my( $url_or_submenu, $tooltip ) = @{ $menu{$item} };
58 %
59 %     if ( ref($url_or_submenu) ) {
60 %
61 %         #warn $item;
62 %
63 %         my( $subhtml, $submenuname ) = submenu($url_or_submenu, $item);
64
65           <% $subhtml |n %>
66           myBar.add(new WebFXMenuButton(<% mt($item) |js_string %>, null, <% mt($tooltip) |js_string %>, <% $submenuname |n %> ));
67
68 %     } else { 
69     
70           myBar.add(new WebFXMenuButton(<% mt($item) |js_string %>, "<% $url_or_submenu %>", <% mt($tooltip) |js_string %> ));
71
72 %     }
73 %   } #foreach $item
74 % } #if $mobile
75
76   myBar.show( null, 'vertical' );
77   myBar.width = 154;
78
79 </SCRIPT>
80
81 <%init>
82 my( %opt ) = @_;
83 my $conf = new FS::Conf;
84 my $fsurl = $opt{'freeside_baseurl'};
85
86 my $mobile = $opt{'mobile'} || 0;
87
88 my $curuser = $FS::CurrentUser::CurrentUser;
89
90 #XXX Active tickets not assigned to a customer
91
92 tie my %report_prospects, 'Tie::IxHash',
93   'List prospects' => [ $fsurl. 'search/prospect_main.html', '' ],
94   'Advanced prospect reports' => [ $fsurl. 'search/report_prospect_main.html', '' ],
95 ;
96
97 tie my %report_customers_lists, 'Tie::IxHash',
98   'by customer number' => [ $fsurl. 'search/cust_main.cgi?browse=custnum', '' ],
99   'by last name' => [ $fsurl. 'search/cust_main.cgi?browse=last', '' ],
100   'by company name' => [ $fsurl. 'search/cust_main.cgi?browse=company', '' ],
101 ;
102 $report_customers_lists{'by active trouble tickets'} = [ $fsurl. 'search/cust_main.cgi?browse=tickets', '' ]
103   if $conf->config('ticket_system');
104 $report_customers_lists{'with USPS-unvalidated addresses'} = [ $fsurl. 'search/cust_main.cgi?browse=uspsunvalid', '' ]
105   if $conf->config('usps_webtools-userid') && $conf->config('usps_webtools-password');
106
107 tie my %report_customers, 'Tie::IxHash';
108 $report_customers{'List customers'} = [ \%report_customers_lists, 'List customers' ]
109   if $curuser->access_right('List all customers');
110 $report_customers{'Zip code distribution'}     = [ $fsurl. 'search/report_cust_main-zip.html', 'Zip codes by number of customers' ];
111 $report_customers{'Customer signup report'}       = [ $fsurl. 'graph/report_cust_signup.html', 'New customer signups by date' ],
112 $report_customers{'Advanced customer reports'} = [ $fsurl. 'search/report_cust_main.html', 'by status, signup date, agent, etc.' ]
113   if $curuser->access_right('Advanced customer search');
114
115 tie my %report_invoices_open, 'Tie::IxHash',
116   'All open invoices' => [ $fsurl.'search/cust_bill.html?OPEN_date', 'All invoices with an unpaid balance' ],
117   '15 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN15_date', 'Invoices 15 days or older with an unpaid balance' ],
118   '30 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN30_date', 'Invoices 30 days or older with an unpaid balance' ],
119   '60 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN60_date', 'Invoices 60 days or older with an unpaid balance' ],
120   '90 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN90_date', 'Invoices 90 days or older with an unpaid balance' ],
121   '120 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN120_date', 'Invoices 120 days or older with an unpaid balance' ],
122 ;
123
124 tie my %report_invoices, 'Tie::IxHash',
125   'Open invoices' => [ \%report_invoices_open, 'Open invoices' ],
126   'All invoices'  => [ $fsurl. 'search/cust_bill.html?date', 'List all invoices' ],
127   'Advanced invoice reports' => [ $fsurl.'search/report_cust_bill.html', 'by agent, date range, etc.' ],
128   'separator'     => '',
129   'Line items'    => [ $fsurl. 'search/report_cust_bill_pkg.html', 'Individual line item detail' ],
130 ;
131
132 tie my %report_discounts, 'Tie::IxHash',
133   'Discount graph'  => [ $fsurl. 'graph/report_cust_bill_pkg_discount.html', 'Discount overview per month' ],
134   'Discount detail' => [ $fsurl.'search/report_cust_bill_pkg_discount.html', 'Discount report (by employee and/or date range)' ],
135   #awful name
136   'Package discounts' => [ $fsurl.'search/report_cust_pkg_discount.html', 'Active/inactive discounts by package' ],
137 ;
138
139 tie my %report_services, 'Tie::IxHash';
140 if ( $curuser->access_right('Configuration') ) {
141   $report_services{'Service definitions'} =  [ $fsurl.'browse/part_svc.cgi?orderby=active', 'Service definitions by number of active packages' ];
142   $report_services{'separator'} =  '';
143 }
144
145 if ( $curuser->access_right('List services') ) {
146   $report_services{'Unprovisioned services'} =  [ $fsurl.'search/report_unprovisioned_services.html', 'Unprovisioned services' ];
147   $report_services{'separator2'} =  '';
148 }
149
150 foreach my $svcdb ( FS::part_svc->svc_tables() ) {
151
152   my $name =        "FS::$svcdb"->table_info->{'name_plural'}
153              || PL( "FS::$svcdb"->table_info->{'name'}        );
154   my $lcname =  "FS::$svcdb"->table_info->{'lcname_plural'} || lc($name);
155   my $lcsname = lc("FS::$svcdb"->table_info->{'name'});
156   my $longname = "FS::$svcdb"->table_info->{'longname_plural'} || $name;
157   my $lclongname = lc($longname);
158   my $sorts = "FS::$svcdb"->table_info->{'sorts'} || [ 'svcnum' ];
159   $sorts = [ $sorts ] unless ref($sorts);
160   my %svc_url = ( 'm'      => $m,
161                   'action' => 'search',
162                   'svcdb'  => $svcdb,
163                 );
164
165   tie my %report_svc, 'Tie::IxHash';
166
167   foreach my $sort ( @$sorts ) {
168
169     my $field_info = FS::part_svc->svc_table_fields($svcdb)->{$sort};
170     my $label = $field_info->{'label_sort'} || 'by '.$field_info->{'label'};
171
172     my $title = "All $lcname";
173     $title .= " $label"
174       if scalar(@$sorts) > 1;
175
176     $report_svc{$title} =
177       [ svc_url( %svc_url, 'query' => "magic=all;sortby=$sort" ),
178         '',
179       ];
180   }
181
182   if ( $svcdb eq 'svc_acct' ) {
183
184     $report_svc{"All $lcname never logged in"} = 
185       [ svc_url( %svc_url, 'query' => "magic=nologin;sortby=svcnum" ),
186         '',
187       ];
188
189   } elsif ( $svcdb eq 'svc_phone' ) {
190
191     $report_svc{"${name}' total usage by time period"} = 
192       [ $fsurl. 'search/report_svc_phone_usage.html',
193         'Total usage (minutes, and amount billed) for the specified time period, per phone number.',
194       ];
195
196   }
197
198   if ( $curuser->access_right('View/link unlinked services') ) {
199     $report_svc{"Unlinked $lcname"} = 
200       [ svc_url( %svc_url, 'query' => "magic=unlinked;sortby=". $sorts->[0] ),
201         "Pre-Freeside $lcname without a customer record",
202       ];
203   }
204
205     $report_svc{"Advanced $lcsname reports"} = 
206         [ $fsurl."search/report_$svcdb.html", '' ]
207       if $svcdb =~ /^svc_(acct|broadband|hardware|phone)$/
208       && $curuser->access_right("Services: $name: Advanced search");
209
210   if ( $svcdb eq 'svc_phone' ) {
211
212     $report_svc{"Phone number (DID) availability"} =
213       [ $fsurl."search/report_phone_avail.html", '' ];
214     $report_svc{"Inventory/Provisioning Status"} =
215       [ $fsurl."search/phone_inventory_provisioned.html", '' ];
216
217   } elsif ( $svcdb eq 'svc_dsl' ) {
218
219     $report_svc{'Qualifications'} = [ $fsurl. 'search/qual.cgi', #XXX qual.html
220                                       '',
221                                     ];
222
223   }
224
225   $report_services{$name} = [ \%report_svc, $longname ]
226     if $curuser->access_right("Services: $name");
227
228 }
229
230 tie my %report_packages, 'Tie::IxHash';
231 if (    $curuser->access_right('Edit package definitions')
232      || $curuser->access_right('Edit global package definitions')
233    )
234 {
235   $report_packages{'Package definitions (by # active)'} =  [ $fsurl.'browse/part_pkg.cgi?active=1', 'Package definitions by number of active packages' ];
236   $report_packages{'separator'} =  '';
237 }
238 if ( $curuser->access_right('Financial reports') ) {
239   $report_packages{'Package churn'} =  [ $fsurl.'graph/report_cust_pkg.html', 'Orders, suspensions and cancellations summary graph' ];
240   $report_packages{'separator2'} =  '';
241 }
242 $report_packages{'All customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?pkgnum', 'List all customer packages', ];
243 $report_packages{'Package summary'} = [ $fsurl.'search/cust_pkg_summary.html', 'Show package sales summary', ]
244   if $curuser->access_right('Summarize packages');
245 $report_packages{'Suspended customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?magic=suspended', 'List suspended packages' ];
246 $report_packages{'Suspension summary'} = [ $fsurl.'search/cust_pkg_susp.html', 'Show suspension activity', ]
247   if $curuser->access_right('Summarize packages');
248 $report_packages{'Customer packages with unconfigured services'} =  [ $fsurl.'search/cust_pkg.cgi?APKG_pkgnum', 'List packages which have provisionable services' ];
249 $report_packages{'FCC Form 477 packages'} =  [ $fsurl.'search/report_477.html', 'Summarize packages by census tract for particular types' ]
250   if $conf->exists('cust_main-require_censustract');
251 $report_packages{'Advanced package reports'} =  [ $fsurl.'search/report_cust_pkg.html', 'by agent, date range, status, package definition' ];
252
253 tie my %report_inventory, 'Tie::IxHash',
254   'Inventory by agent' => [ $fsurl.'search/report_agent_inventory.html', '' ],
255   'Inventory activity' => [ $fsurl.'search/report_h_inventory_item.html', '' ],
256 ;
257
258 tie my %report_rating, 'Tie::IxHash';
259 $report_rating{'RADIUS sessions'} = [ $fsurl.'search/sqlradius.html', '' ]
260   if $curuser->access_right("Usage: RADIUS sessions");
261 $report_rating{'RADIUS data usage'} = [ $fsurl.'search/report_sqlradius_usage.html', '' ]
262   if $curuser->access_right("Usage: RADIUS sessions");
263 $report_rating{'Call Detail Records (CDRs)'} = [ $fsurl.'search/report_cdr.html', '' ]
264   if $curuser->access_right("Usage: Call Detail Records (CDRs)");
265 $report_rating{'Unrateable CDRs'} = [ $fsurl.'search/cdr.html?freesidestatus=failed;cdrbatchnum=_ALL_' ]
266   if $curuser->access_right("Usage: Unrateable CDRs");
267 if ( $curuser->access_right("Usage: Time worked") ) {
268   $report_rating{'Time worked'} = [ $fsurl.'search/report_rt_transaction.html', '' ];
269   $report_rating{'Time worked summary'} = [ $fsurl.'search/report_rt_ticket.html', '' ];
270 }
271
272 tie my %report_ticketing_statistics, 'Tie::IxHash',
273   'Tickets per day per Queue'         => [ $fsurl.'rt/RTx/Statistics/CallsQueueDay', 'View the number of tickets created, resolved or deleted in a specific Queue, over the requested period of days' ],
274   'Ticket status by Queue'            => [ $fsurl.'rt/RTx/Statistics/OpenStalled', 'View numbers of new, open and stalled tickets in a selected Queue' ],
275   'Tickets per day (multiple Queues)' => [ $fsurl.'rt/RTx/Statistics/CallsMultiQueue', 'View tickets created, resolved or deleted on in one or more Queues over a specified time period' ],
276   'Tickets per Day of Week'           => [ $fsurl.'rt/RTx/Statistics/DayOfWeek', 'View trends showing when tickets are created, resolved or deleted' ],
277   'Time to resolve'                   => [ $fsurl.'rt/RTx/Statistics/Resolution', 'View how long tickets take to be resolved by Queue' ],
278   'Time to resolve (scatter graph)'   => [ $fsurl.'rt/RTx/Statistics/TimeToResolve', 'View a detailed scatter graph of time to resolve tickets by Queue' ],
279 ;
280
281 tie my %report_ticketing, 'Tie::IxHash',
282   'Resolved by owner'       => [ $fsurl.'rt/Tools/Reports/ResolvedByOwner.html', '' ],
283   'Resolved in date range'  => [ $fsurl.'rt/Tools/Reports/ResolvedByDates.html', '' ],
284   'Created in date range'   => [ $fsurl.'rt/Tools/Reports/CreatedByDates.html', '' ],
285   'separator'               => '',
286   'Statistics'              => [ \%report_ticketing_statistics, '' ],
287   'separator2'              => '',
288   'Advanced ticket reports' => [ $fsurl.'rt/Search/Build.html', 'List tickets by any criteria' ],
289 ;
290
291 tie my %report_bill_event, 'Tie::IxHash',
292   'All billing events' => [ $fsurl.'search/report_cust_event.html', 'All billing events for a date range' ],
293   'Billing event errors' => [ $fsurl.'search/report_cust_event.html?failed=1', 'Failed credit cards, processor or printer problems, etc.' ],
294 #  'All invoice events' => [ $fsurl.'search/cust_bill_event.html', 'Reports on deprecated, old-style invoice events for a date range' ],
295 #  'Invoice event errors' => [ $fsurl.'search/cust_bill_event.html?failed=1', 'Reports on deprecated, old-style events for failed credit cards, processor or printer problems, etc.' ],
296 ;
297
298 tie my %report_payments, 'Tie::IxHash',
299     'Payments' => [ $fsurl.'search/report_cust_pay.html', 'Payment report (by type and/or date range)' ],
300 ;
301 $report_payments{'Pending Payments'} = [ $fsurl.'search/cust_pay_pending.html?magic=_date;statusNOT=done', 'Pending real-time payments' ]
302   if $curuser->access_right('View customer pending payments');
303 $report_payments{'Voided Payments'} = [ $fsurl.'search/report_cust_pay.html?void=1', 'Voided payment report (by type and/or date range)' ]
304   if $curuser->access_right('View customer pending payments');
305 $report_payments{'Unapplied Payments'} = [ $fsurl.'search/report_cust_pay.html?unapplied=1', 'Unapplied payment report (by type and/or date range)' ];
306 $report_payments{'Payment Batches'} = [ $fsurl.'search/pay_batch.html', 'Payment batches (by status and/or date range)' ]
307   if $conf->exists('batch-enable') || $conf->config('batch-enable_payby');
308 $report_payments{'Unapplied Payment Aging'} = [ $fsurl.'search/report_unapplied_cust_pay.html', 'Unapplied payment aging report' ];
309 $report_payments{'Deleted Payments / Payment history table'} = [ $fsurl.'search/report_h_cust_pay.html', 'Deleted payments / payment history table' ]
310   if $conf->exists('payment-history-report');
311
312 tie my %report_financial, 'Tie::IxHash';
313 if ( $curuser->access_right('Financial reports') ) {
314   %report_financial = (
315     'Sales, Credits and Receipts' => [ $fsurl.'graph/report_money_time.html', 'Sales, credits and receipts summary graph' ],
316     'Daily Sales, Credits and Receipts' => [ $fsurl.'graph/report_money_time_daily.html', 'Sales, credits and receipts (broken down by day) summary graph' ],
317     'Sales Report' => [ $fsurl.'graph/report_cust_bill_pkg.html', 'Sales report and graph (by agent, package class and/or date range)' ],
318     'Rated Call Sales Report' => [ $fsurl.'graph/report_cust_bill_pkg_detail.html', 'Sales report and graph (by agent, package class, usage class and/or date range)' ],
319     'Sales With Advertising Source' => [ $fsurl.'search/report_cust_bill_pkg_referral.html' ],
320     'Sales with Agent Commissions' => [ $fsurl.'search/report_agent_commission.html' ],
321   );
322 }
323
324 $report_financial{'Employee Commission Report'} = [ $fsurl.'search/report_employee_commission.html', '' ]
325   if $curuser->access_right('Employees: Commission Report');
326
327 if ( $curuser->access_right('Financial reports')) {
328   $report_financial{'Credit Report'} = [ $fsurl.'search/report_cust_credit.html', 'Credit report (by employee and/or date range)' ];
329   $report_financial{'Credit application detail'} = [ $fsurl.'search/report_cust_credit_bill_pkg.html', 'Line item application detail' ];
330   $report_financial{'Unapplied Credits'} = [ $fsurl.'search/report_cust_credit.html?unapplied=1', 'Unapplied credit report (by type and/or date range)' ];
331   $report_financial{'Refund Report'} = [ $fsurl.'search/report_cust_refund.html', 'Refund report (by type and/or date range)' ];
332   $report_financial{'Unapplied Refunds'} = [ $fsurl.'search/report_cust_refund.html?unapplied=1', 'Unapplied refund report (by type and/or date range)' ];
333   $report_financial{'Package Costs Report'} = [ $fsurl.'graph/report_cust_pkg_cost.html', 'Package setup and recurring costs graph' ];
334 }
335
336 $report_financial{'Employee Audit Report'} = [ $fsurl.'search/report_employee_audit.html', 'Employee audit report' ]
337   if $curuser->access_right('Employees: Audit Report');
338
339 if ( $curuser->access_right('Financial reports')) {
340   $report_financial{'A/R Aging'} = [ $fsurl.'search/report_receivables.html', 'Accounts Receivable Aging report' ];
341   $report_financial{'Prepaid Income'} = [ $fsurl.'search/report_prepaid_income.html', 'Prepaid income (unearned revenue)  report' ];
342
343   my $taxproducts = $conf->exists('enable_taxproducts');
344   $report_financial{'Tax Liability'. ($taxproducts ? ' (internal tax data)' : '')} = [ $fsurl.'search/report_tax.html', 'Tax liability report (internal tax data)' ];
345   $report_financial{'Tax Liability (vendor tax data)'} = [ $fsurl.'search/report_newtax.html', 'Tax liability report (vendor tax data)' ]
346     if $taxproducts;
347
348   $report_financial{'Customer Accounting Summary'} = [ $fsurl.'search/report_customer_accounting_summary.html', 'Customer accounting summary report' ];
349
350 } elsif ($curuser->access_right('Receivables report')) {
351
352   $report_financial{'A/R Aging'} = [ $fsurl.'search/report_receivables.html', 'Accounts Receivable Aging report' ];
353
354 }
355
356 tie my %report_logs, 'Tie::IxHash';
357   $report_logs{'System log'} = [ $fsurl.'search/log.html', 'View system events and debugging information.' ],
358   if $curuser->access_right('View system logs')
359   || $curuser->access_right('Configuration');
360   $report_logs{'Outgoing messages'} = [ $fsurl.'search/cust_msg.html', 'View outgoing message log' ]
361   if $curuser->access_right('View email logs')
362   || $curuser->access_right('Configuration');
363
364 tie my %report_menu, 'Tie::IxHash';
365 $report_menu{'Prospects'}   = [ \%report_prospects, 'Prospect reports' ]
366   if $curuser->access_right('List prospects');
367 $report_menu{'Customers'}   = [ \%report_customers, 'Customer reports'  ]
368   if $curuser->access_right('List customers');
369 $report_menu{'Invoices'}    =  [ \%report_invoices,  'Invoice reports'   ]
370   if $curuser->access_right('List invoices');
371 $report_menu{'Discounts'}   =  [ \%report_discounts, 'Discount reports'  ]
372   if $curuser->access_right('Financial reports');
373 $report_menu{'Payments'}    =  [ \%report_payments,  'Payment reports'   ]
374   if $curuser->access_right('Financial reports');
375 $report_menu{'Packages'}    =  [ \%report_packages,  'Package reports'   ]
376   if $curuser->access_right('List packages');
377 $report_menu{'Services'}    =  [ \%report_services,  'Services reports'  ]
378   if $curuser->access_right('List services');
379 $report_menu{'Inventory'}    =  [ \%report_inventory,  'Inventory reports'  ]
380   if $curuser->access_right('Configuration'); #XXX List inventory?
381 $report_menu{'Usage'} =  [ \%report_rating,    'Usage reports'  ]
382   if $curuser->access_right('List rating data');
383 $report_menu{'Tickets'}   = [ \%report_ticketing, 'Ticket reports' ]
384   if $conf->config('ticket_system')
385   ;#&& FS::TicketSystem->access_right(\%session, 'Something');
386 $report_menu{'Billing events'} =  [ \%report_bill_event, 'Billing events' ]
387   if $curuser->access_right('Billing event reports');
388 $report_menu{'Financial'}  = [ \%report_financial, 'Financial reports' ]
389   if keys %report_financial;
390 $report_menu{'Logs'} = [ \%report_logs, 'System and email logs' ]
391   if (keys %report_logs); # empty if the user has no rights to it
392 $report_menu{'SQL Query'}  = [ $fsurl.'search/report_sql.html', 'SQL Query' ]
393   if $curuser->access_right('Raw SQL');
394
395 tie my %tools_importing, 'Tie::IxHash',
396   'Customers' => [ $fsurl.'misc/cust_main-import.cgi', '' ],
397   'Customer packages' => [ $fsurl.'misc/cust_pkg-import.html', '' ],
398   'Customer comments from CSV file' => [ $fsurl.'misc/cust_main_note-import.html', '' ],
399   'One-time charges from CSV file' => [ $fsurl.'misc/cust_main-import_charges.cgi', '' ],
400   'Payments from CSV file' => [ $fsurl.'misc/cust_pay-import.cgi', '' ],
401   'Phone numbers (DIDs)' => [ $fsurl.'misc/phone_avail-import.html', '' ],
402   'Call Detail Records (CDRs)' => [ $fsurl.'misc/cdr-import.html', '' ],
403 ;
404 if ( $conf->exists('enable_taxproducts') ) {
405   if ( $conf->exists('taxdatadirectdownload') ) {
406       $tools_importing{'Tax rates from vendor site'} =
407       [ $fsurl.'misc/tax-fetch_and_import.cgi', '' ];
408   } else {
409     $tools_importing{'Tax rates from CSV files'} =
410       [ $fsurl.'misc/tax-import.cgi', '' ];
411   }
412 }
413
414 tie my %tools_exporting, 'Tie::IxHash',
415   'Download database dump' => [ $fsurl. 'misc/dump.cgi', '' ],
416 ;
417
418 tie my %tools_ticketing, 'Tie::IxHash',
419   'Offline'      => [ $fsurl.'rt/Tools/Offline.html', '' ],
420   'My Day'       => [ $fsurl.'rt/Tools/MyDay.html', '' ],
421   'My Approvals' => [ $fsurl.'rt/Approvals/', '' ],
422 ;
423 $tools_ticketing{'Cron Tool'} = [ $fsurl.'rt/Developer/CronTool/', '' ]
424   if $conf->exists('rt-crontool');
425
426 tie my %tools_menu, 'Tie::IxHash', ();
427 $tools_menu{'Quick payment entry'} =  [ $fsurl.'misc/batch-cust_pay.html', 'Enter multiple payments in a batch' ]
428   if $curuser->access_right('Post payment batch');
429 $tools_menu{'Process payment batches'} = [ $fsurl.'search/pay_batch.cgi?magic=_date;open=1;intransit=1', 'Process credit card and electronic check batches' ]
430   if ( $conf->exists('batch-enable') || $conf->config('batch-enable_payby') )
431      && $curuser->access_right('Process batches');
432 $tools_menu{'Download invoice batches'} = [ $fsurl.'search/bill_batch.cgi' ]
433   if $curuser->access_right('Process invoice batches')
434   || $curuser->access_right('Process global invoice batches')
435   || $curuser->access_right('Configuration'); #XXX remove in 2.5
436   #now there's a standalone event#if $conf->exists('invoice_print_pdf');
437 $tools_menu{'Bulk DID Orders'} =  [ $fsurl.'browse/did_order.html', 'View/manage bulk DID orders' ]
438   if $curuser->access_right('Import');
439 $tools_menu{'Job Queue'} =  [ $fsurl.'search/queue.html', 'View pending job queue' ]
440   if $curuser->access_right('Job queue');
441 $tools_menu{'Ticketing'} = [ \%tools_ticketing, 'Ticketing tools' ]
442   if $conf->config('ticket_system');
443 $tools_menu{'Business card scan'} = [ $fsurl.'edit/prospect_main-upload.html' ]
444   if $curuser->access_right('New prospect');
445 $tools_menu{'Time Queue'} =  [ $fsurl.'search/report_timeworked.html', 'View pending support time' ]
446   if $curuser->access_right('Time queue');
447 $tools_menu{'Attachments'} = [ $fsurl.'browse/cust_attachment.html', 'View customer attachments' ]
448   if !$conf->config('disable_cust_attachment') and $curuser->access_right('View attachments') and $curuser->access_right('Browse attachments');
449 $tools_menu{'Importing'} =  [ \%tools_importing, 'Import tools' ]
450   if $curuser->access_right('Import');
451 $tools_menu{'Exporting'} =  [ \%tools_exporting, 'Export tools' ]
452   if $curuser->access_right('Export');
453
454 tie my %config_employees, 'Tie::IxHash',
455   'Employees' => [ $fsurl.'browse/access_user.html', 'Setup internal users' ],
456   'Employee groups' => [ $fsurl.'browse/access_group.html', 'Employee groups allow you to control access to the backend' ],
457 ;
458
459 tie my %config_export_svc, 'Tie::IxHash', ();
460 if ( $curuser->access_right('Configuration') ) {
461   $config_export_svc{'Exports'} = [ $fsurl.'browse/part_export.cgi', 'Provisioning services to external machines, databases and APIs' ];
462   $config_export_svc{'Service definitions'} = [ $fsurl.'browse/part_svc.cgi', 'Services are items you offer to your customers' ];
463 }
464
465 tie my %config_pkg_reason, 'Tie::IxHash',
466   'Cancel reasons' => [ $fsurl.'browse/reason.html?class=C', 'Cancel reasons explain why a service was cancelled.' ],
467   'Cancel reason types' => [ $fsurl.'browse/reason_type.html?class=C', 'Cancel reason types define groups of reasons.' ],
468   'Suspend reasons' => [ $fsurl.'browse/reason.html?class=S', 'Suspend reasons explain why a service was suspended.' ],
469   'Suspend reason types' => [ $fsurl.'browse/reason_type.html?class=S', 'Suspend reason types define groups of reasons.' ],
470 ;
471
472 tie my %config_pkg, 'Tie::IxHash', ();
473 $config_pkg{'Package definitions'} = [ $fsurl.'browse/part_pkg.cgi', 'One or more services are grouped together into a package and given pricing information. Customers purchase packages, not services' ]
474   if    $curuser->access_right('Edit package definitions')
475      || $curuser->access_right('Edit global package definitions');
476 if ( $curuser->access_right('Configuration') ) {
477
478   #package grouping sub-menu?
479   $config_pkg{'Package classes'} =  [ $fsurl.'browse/pkg_class.html', 'Package classes define groups of packages, for taxation, ordering convenience and reporting.' ];
480   $config_pkg{'Package categories'} =  [ $fsurl.'browse/pkg_category.html', 'Package categories define groups of package classes, for invoice sections.' ];
481   $config_pkg{'Package report classes'} =  [ $fsurl.'browse/part_pkg_report_option.html', 'Package classes define optional groups of packages for reporting only.' ];
482   #eo package grouping sub-menu
483
484   $config_pkg{'Discounts'} = [ $fsurl.'browse/discount.html', '' ];
485   $config_pkg{'Cancel/Suspend Reasons'} = [ \%config_pkg_reason, '' ];
486 }
487
488 tie my %config_cust, 'Tie::IxHash',
489   'Customer classes'    =>  [ $fsurl.'browse/cust_class.html', 'Customer classes define groups of customers for reporting.' ],
490   'Customer categories' =>  [ $fsurl.'browse/cust_category.html', 'Customer categories define groups of customer classes.' ],
491 ;
492   
493 $config_cust{'Customer note classes'} = [ $fsurl.'browse/cust_note_class.html', 'Customer note classes define groups of notes for reporting.' ]
494     if ($conf->exists('note-classes') && $conf->config('note-classes') > 0);
495
496 tie my %config_agent, 'Tie::IxHash',
497   'Agent types' => [ $fsurl.'browse/agent_type.cgi', 'Agent types define groups of package definitions that you can then assign to particular agents' ],
498   'Agents'      => [ $fsurl.'browse/agent.cgi', 'Agents are resellers of your service. Agents may be limited to a subset of your full offerings (via their type)' ],
499   'Agent payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors for agent overrides' ];
500 ;
501
502 tie my %config_billing_rates, 'Tie::IxHash',
503   'Rate plans' => [ $fsurl.'browse/rate.cgi', 'Manage rate plans' ],
504   'Regions and prefixes' => [ $fsurl.'browse/rate_region.html', 'Manage regions and prefixes' ],
505   'Usage classes'  => [ $fsurl.'browse/usage_class.html', 'Usage classes define groups of usage for taxation.' ],
506   'Time periods' => [ $fsurl.'browse/rate_time.html', 'Time periods define days and hours for rate plans' ],
507   'Edit rates with Excel' => [ $fsurl.'misc/rate_edit_excel.html', 'Download and edit rates with Excel, then upload changes.' ], #"Edit with Excel" ?
508   'separator'     => '', #its a separator!
509   'Tiering plans' => [ $fsurl.'browse/rate_tier.html', 'Rating tiers' ],
510 ;
511
512 tie my %config_billing, 'Tie::IxHash';
513 #  'Payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors' ];
514 $config_billing{'Billing events'} = [ $fsurl.'browse/part_event.html', 'Billing actions for customers, invoices and packages' ]
515     if $curuser->access_right('Edit billing events')
516     || $curuser->access_right('Edit global billing events');
517 if ( $curuser->access_right('Configuration') ) {
518   #$config_billing{'Invoice events'}         = [ $fsurl.'browse/part_bill_event.cgi', 'Deprecated, old-style actions for overdue invoices' ];
519   $config_billing{'Invoice templates'}      = [ $fsurl.'browse/invoice_template.html', 'Edit templates for HTML, plaintext and typeset invoices' ];
520   $config_billing{'Prepaid cards'}          = [ $fsurl.'search/prepay_credit.html', 'View outstanding cards, generate new cards' ];
521   $config_billing{'Call rates and regions'} = [ \%config_billing_rates, 'Manage rate plans, regions and prefixes for VoIP and call billing' ];
522
523   my $config_taxes_name = 'Locales and tax rates'.
524                           ( $conf->exists('enable_taxproducts')
525                             ? ' (internal tax class system)'
526                             : ''
527                           );
528   $config_billing{$config_taxes_name}  = [ $fsurl.'browse/cust_main_county.cgi', 'Change tax rates, or break down a country into states, or a state into counties and assign different tax rates to each' ];
529   $config_billing{'Tax rates (vendor data tax products system)'}  = [ $fsurl.'browse/tax_rate.cgi', 'Edit tax rates for the vendor data tax products system' ]
530      if $conf->exists('enable_taxproducts');
531   $config_billing{'Tax classes'} = [ $fsurl. 'browse/part_pkg_taxclass.html', 'Tax classes' ];
532
533   $config_billing{'Credit reasons'}  = [ $fsurl.'browse/reason.html?class=R', 'Credit reasons explain why a credit was issued.' ];
534   $config_billing{'Credit reason types'}  = [ $fsurl.'browse/reason_type.html?class=R', 'Credit reason types define groups of reasons.' ];
535 }
536
537 tie my %config_ticketing, 'Tie::IxHash',
538   'Ticketing Users'      => [ $fsurl.'rt/Admin/Users', 'View/Edit ticketing users' ], #XXX to be unified
539   'Ticketing Groups'     => [ $fsurl.'rt/Admin/Groups', 'View/Edit ticketing groups and group membership' ], #XXX to be unified
540   'Ticketing Queues'     => [ $fsurl.'rt/Admin/Queues', 'View/Edit ticketing queues and queue-specific properties' ], 
541   'Ticket Custom Fields' => [ $fsurl.'rt/Admin/CustomFields', 'View/Edit ticketing custom fields' ], 
542   'Ticketing Global'     => [ $fsurl.'rt/Admin/Global', 'View/Edit ticketing configuration applicable to all queues' ], 
543   #"System Configuraiton"?  useless, just makes people report errors about missing Module::Versions::Report #'Ticketing Tools'     => [ $fsurl.'rt/Admin/Tools', '' ], 
544 ;
545
546 tie my %config_dialup, 'Tie::IxHash',
547   'Access numbers' => [ $fsurl.'browse/svc_acct_pop.cgi', 'Points of Presence' ],
548 ;
549
550 tie my %config_broadband, 'Tie::IxHash',
551   'Towers'         => [ $fsurl.'browse/tower.html', 'Towers and sectors' ],
552   'Routers'        => [ $fsurl.'browse/router.cgi', 'Broadband access routers' ],
553   'Address blocks' => [ $fsurl.'browse/addr_block.cgi', 'Manage address blocks and block assignments to broadband routers' ],
554 ;
555
556 tie my %config_phone, 'Tie::IxHash',
557   'View/Edit phone device types' => [ $fsurl.'browse/part_device.html', 'Phone device types' ],
558   'View/Edit bulk DID vendors' => [ $fsurl.'browse/did_vendor.html', 'Bulk DID vendors' ],
559 ;
560
561 tie my %config_nms, 'Tie::IxHash',
562   'View/Edit virtual ports' => [ $fsurl.'browse/torrus_srvderive.html', '' ],
563 ;
564
565 tie my %config_misc, 'Tie::IxHash';
566 $config_misc{'Message templates'} = [ $fsurl.'browse/msg_template.html', 'Templates for customer notices' ]
567   if $curuser->access_right(['View templates', 'View global templates',
568                              'Edit templates', 'Edit global templates', ]);
569 $config_misc{'Tags'} = [ $fsurl.'browse/part_tag.html', '' ]
570   if $curuser->access_right('Configuration');
571 $config_misc{'Advertising sources'} = [ $fsurl.'browse/part_referral.html', 'Where a customer heard about your service.' ]
572   if $curuser->access_right('Edit advertising sources')
573   || $curuser->access_right('Edit global advertising sources');
574 if ( $curuser->access_right('Configuration') ) {
575   $config_misc{'Virtual fields'} = [ $fsurl.'browse/part_virtual_field.cgi', 'Locally defined fields', ];
576   $config_misc{'Translation strings'} = [ $fsurl.'browse/msgcat.html', 'Translations and other customizable labels for each locale' ];
577 }
578 $config_misc{'Inventory classes and inventory'} = [ $fsurl.'browse/inventory_class.html', 'Setup inventory classes and stock inventory' ]
579   if $curuser->access_right('Edit inventory')
580   || $curuser->access_right('Edit global inventory')
581   || $curuser->access_right('Configuration');
582
583 $config_misc{'Hardware types'} = [ $fsurl.'browse/hardware_class.html', 'Set up hardware type catalog' ]
584   if $curuser->access_right('Configuration');
585
586 if ( $curuser->access_right('Configuration') ) {
587   $config_misc{'RADIUS Groups'} = [ $fsurl.'browse/radius_group.html', 'Manage RADIUS groups' ];
588   $config_misc{'RADIUS Clients'} = [ $fsurl.'browse/nas.html', 'Manage RADIUS clients' ];
589   $config_misc{'Cable providers'} = [ $fsurl.'browse/cable_provider.html', '' ];
590   $config_misc{'Cable modem models'} = [ $fsurl.'browse/cable_model.html', '' ];
591 }
592
593 tie my %config_menu, 'Tie::IxHash';
594 if ( $curuser->access_right('Configuration' ) ) {
595   %config_menu = (
596     'Settings'      => [ $fsurl.'config/config-view.cgi', '' ],
597     'separator'     => '', #its a separator!
598     'Employees'     => [ \%config_employees, '' ],
599   );
600 }
601 $config_menu{'Provisioning and services'} = [ \%config_export_svc, '' ]
602   if $curuser->access_right('Configuration' );
603 $config_menu{'Packages'} = [ \%config_pkg, '' ]
604   if    $curuser->access_right('Configuration' )
605      || $curuser->access_right('Edit package definitions')
606      || $curuser->access_right('Edit global package definitions');
607 $config_menu{'Customers'} = [ \%config_cust, '' ]
608   if $curuser->access_right('Configuration');
609 $config_menu{'Resellers'} = [ \%config_agent, '' ]
610   if $curuser->access_right('Configuration');
611 $config_menu{'Billing'} = [ \%config_billing, '' ]
612   if $curuser->access_right('Edit billing events')
613   || $curuser->access_right('Edit global billing events');
614 $config_menu{'Ticketing'} = [ \%config_ticketing, '' ]
615   if $conf->config('ticket_system')
616   && FS::TicketSystem->access_right(\%session, 'ShowConfigTab');
617 $config_menu{'Dialup'}  = [ \%config_dialup, ''    ]
618   if $curuser->access_right('Dialup configuration');
619 $config_menu{'Broadband'} = [ \%config_broadband, ''    ]
620   if $curuser->access_right('Broadband configuration');
621 $config_menu{'Phone'}  = [ \%config_phone, ''    ]
622   if $curuser->access_right('Configuration');
623 $config_menu{'Network Monitoring'} = [ \%config_nms, '' ]
624   if $curuser->access_right('Configure network monitoring')
625   && $conf->config('network_monitoring_system') eq 'Torrus_Internal';
626 $config_menu{'Miscellaneous'} = [ \%config_misc, ''    ]
627   if $curuser->access_right('Configuration' )
628   || $curuser->access_right('Edit advertising sources')
629   || $curuser->access_right('Edit global advertising sources');
630
631
632 my $wiki = 'http://www.freeside.biz/mediawiki/index.php';
633 my $doc_link = $conf->config('support-key')
634                  ? "$wiki/Supported:Documentation"
635                  : $curuser->access_right('Configuration')
636                    ? "$wiki/Freeside:2.1:Documentation"
637                    : "$wiki/Freeside:2.1:Documentation:User";
638
639 eval "use RT;"
640   if $conf->config('ticket_system') eq 'RT_Internal';
641
642 tie my %help_menu, 'Tie::IxHash';
643 my $agentnum = $conf->config('brand-agent');
644 if ( $agentnum ) {
645   my $company_name = $conf->config('company_name', $agentnum);
646   $help_menu{"About $company_name"} = [ "javascript:about_freeside()", '' ];
647 } else {
648   $help_menu{'Billing documentation'} = [ $doc_link, 'Freeside documentation' ];
649   $help_menu{'Ticketing documentation'} = [ 'http://wiki.bestpractical.com/', 'Request Tracker Wiki' ]
650     if $conf->config('ticket_system') eq 'RT_Internal';
651   $help_menu{'Networking monitoring documentation'} = [ 'http://torrus.org/userguide.pod.html', 'Torrus User Guide' ]
652     if $conf->config('network_monitoring_system') eq 'Torrus_Internal';
653   $help_menu{'separator'} = '';
654   $help_menu{"About Freeside v$FS::VERSION"} = [ "javascript:about_freeside()", '' ];
655   $help_menu{"About RT v$RT::VERSION"} = [ 'http://www.bestpractical.com/rt', 'Request Tracker Homepage' ]
656     if $conf->config('ticket_system') eq 'RT_Internal';
657   $help_menu{"About Torrus v1.0.9"} = [ 'http://www.torrus.org/', 'Torrus Homepage' ] #XXX manual version
658     if $conf->config('network_monitoring_system') eq 'Torrus_Internal';
659 }
660
661
662 tie my %menu, 'Tie::IxHash';
663
664 if ( $conf->config('menu-prepend_links')) {
665   my @links = split(/\n/, $conf->config('menu-prepend_links'));
666   foreach my $link (@links) {
667     $link =~ /^\s*(\S+)\s+(.*?)(\s*\(([^\)]*)\))?$/ or next;
668     my($url, $label, $alt) = ($1, $2, $4);
669     $menu{$label} = [ $url, $alt ];
670   }
671 }
672
673 $menu{'Billing Main'} = [ $fsurl, 'Billing start page', ];
674
675 if ( $conf->config('ticket_system') ) {
676   $menu{'Ticketing Main'} =
677     [ 
678       ( $conf->config('ticket_system') eq 'RT_External'
679         ? FS::TicketSystem->baseurl()
680         : $fsurl.'rt/'
681       ),
682       'Ticketing start page',
683     ],
684 }
685
686 if ( $conf->config('network_monitoring_system') eq 'Torrus_Internal' &&
687   $curuser->access_right('Configure network monitoring') ) {
688   $menu{'Network Main'} =
689     [ $fsurl.'torrus/main', 'Network monitoring start page' ],
690 }
691
692 $menu{'New prospect'} = [ $fsurl.'edit/prospect_main.html', 'Add a new prospect' ]
693   if $curuser->access_right('New prospect');
694 $menu{'New customer'} = [ $fsurl.'edit/cust_main.cgi', 'Add a new customer' ]
695   if $curuser->access_right('New customer');
696 $menu{'Reports'} = [ \%report_menu, 'Lists, reporting and graphing' ]
697   if keys %report_menu;
698 $menu{'Tools'} = [ \%tools_menu, 'Tools' ]
699   if keys %tools_menu;
700 $menu{'Configuration'} = [ \%config_menu, 'Configuration and setup' ]
701   if $curuser->access_right('Configuration')
702   || $curuser->access_right('Edit package definitions')
703   || $curuser->access_right('Edit global package definitions')
704   || $curuser->access_right('Edit billing events')
705   || $curuser->access_right('Edit global billing events')
706   || $curuser->access_right('Dialup configuration')
707   || $curuser->access_right('Broadband configuration')
708   || $curuser->access_right('Phone configuration')
709   || $curuser->access_right('Edit advertising sources')
710   || $curuser->access_right('Edit global advertising sources');
711 $menu{'Help'} = [ \%help_menu, '' ];
712
713
714 use vars qw($gmenunum);
715 $gmenunum = 0;
716
717 sub submenu {
718   my($submenu, $title) = @_;
719   my $menunum = $gmenunum++;
720
721   #return two args: html, menuname
722
723   "var myMenu$menunum = new WebFXMenu;\n".
724   #"myMenu$menunum.useAutoPosition = true;\n".
725 #  "myMenu$menunum.emptyText = '$title';\n".
726   "myMenu$menunum.emptyText = '';\n".
727
728   (
729     join("\n", map {
730
731       if ( !ref( $submenu->{$_} ) ) {
732
733         "myMenu$menunum.add(new WebFXMenuSeparator());";
734
735       } else {
736
737         my($url_or_submenu, $tooltip ) = @{ $submenu->{$_} };
738         if ( ref($url_or_submenu) ) {
739
740           my($subhtml, $submenuname ) = submenu($url_or_submenu, $_); #mmm, recursion
741
742           "$subhtml\n".
743           "myMenu$menunum.add(new WebFXMenuItem(\"$_\", null, \"$tooltip\", $submenuname ));";
744
745         } else {
746
747           "myMenu$menunum.add(new WebFXMenuItem(\"$_\", \"$url_or_submenu\", \"$tooltip\" ));";
748
749         }
750
751       }
752
753     } keys %$submenu )
754   ). "\n".
755   "myMenu$menunum.width = 256;\n",
756
757   "myMenu$menunum";
758
759 }
760
761 </%init>
762