091ec1245631bbbb8dab07d4416faa2b7b3b9980
[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?v=<% $FS::VERSION %>" type="text/css" rel="stylesheet">
17   <link href="<%$fsurl%>elements/freeside-print.css?v=<% $FS::VERSION %>" type="text/css" rel="stylesheet" media="print">
18 % }
19 <link href="<%$fsurl%>elements/freeside-menu.css?v=<% $FS::VERSION %>" 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 # saved searches
91 tie my %report_saved_searches, 'Tie::IxHash';
92 if ( my @searches = grep { $_->disabled eq '' } $curuser->saved_search ) {
93   foreach my $search (@searches) {
94     $report_saved_searches{ $search->searchname } = [
95       # don't use query_string here; we don't want to override the format
96       $fsurl . $search->path . '?' . $search->params , ''
97     ];
98   }
99   $report_saved_searches{'separator'} = '';
100   $report_saved_searches{'My saved searches'} =
101     [ $fsurl. 'browse/saved_search.html',
102       'Manage saved searches and subscriptions' ];
103 }
104
105 #XXX Active tickets not assigned to a customer
106
107 tie my %report_prospects, 'Tie::IxHash';
108 if ( $curuser->access_right('List prospects') ) {
109   $report_prospects{'List prospects'} = [ $fsurl. 'search/prospect_main.html', '' ];
110   $report_prospects{'Advanced prospect reports'} = [ $fsurl. 'search/report_prospect_main.html', '' ];
111 }
112 $report_prospects{'separator'} = ''
113   if $curuser->access_right('List prospects')
114   && $curuser->access_right('List contacts');
115 $report_prospects{'Prospect contacts'} = [ $fsurl. 'search/report_contact.html?link=prospect_main', '' ]
116   if $curuser->access_right('List contacts');
117
118 tie my %report_quotations, 'Tie::IxHash',
119   'List quotations' => [ $fsurl. 'search/quotation.html', '' ],
120   'Advanced quotation reports' => [ $fsurl. 'search/report_quotation.html', '' ],
121 ;
122
123 tie my %report_customers_lists, 'Tie::IxHash',
124   'by customer number' => [ $fsurl. 'search/cust_main.cgi?browse=custnum', '' ],
125   'by last name' => [ $fsurl. 'search/cust_main.cgi?browse=last', '' ],
126   'by company name' => [ $fsurl. 'search/cust_main.cgi?browse=company', '' ],
127 ;
128 $report_customers_lists{'by active trouble tickets'} = [ $fsurl. 'search/cust_main.cgi?browse=tickets', '' ]
129   if $conf->config('ticket_system');
130 $report_customers_lists{'with USPS-unvalidated addresses'} = [ $fsurl. 'search/cust_main.cgi?browse=uspsunvalid', '' ]
131   if $conf->config('usps_webtools-userid') && $conf->config('usps_webtools-password');
132 $report_customers_lists{'with referrals'} = [ $fsurl. 'search/cust_main.html?with_referrals=1' ];
133
134 tie my %report_customers, 'Tie::IxHash';
135 $report_customers{'List customers'} = [ \%report_customers_lists, 'List customers' ]
136   if $curuser->access_right('List all customers');
137 $report_customers{'Zip code distribution'}     = [ $fsurl. 'search/report_cust_main-zip.html', 'Zip codes by number of customers' ]
138   if $curuser->access_right('List zip codes');
139 $report_customers{'Customer signup report'}    = [ $fsurl. 'graph/report_cust_signup.html',    'New customer signups by date' ]
140   if $curuser->access_right('Financial reports');
141 $report_customers{'Customer churn report'} =  [ $fsurl.'graph/report_cust_churn.html', 'New customers, suspensions, and cancellations summary' ]
142   if $curuser->access_right('Customers: Customer churn report');
143 $report_customers{'Signup date report'}        = [ $fsurl. 'graph/report_signupdate.html',     'Signup date report (by date of signup)' ];
144 $report_customers{'Advanced customer reports'} = [ $fsurl. 'search/report_cust_main.html',     'by status, signup date, agent, etc.' ]
145   if $curuser->access_right('Advanced customer search');
146 if ( $curuser->access_right('List contacts') ) {
147   $report_customers{'separator'} = '';
148   $report_customers{'Customer contacts'} = [ $fsurl. 'search/report_contact.html?link=cust_main' ];
149   $report_customers{'Customer stored payment information'} = [ $fsurl. 'search/report_cust_payby.html' ];
150   $report_customers{'Customer timespan'} = [ $fsurl. 'search/report_cust_timespan.html' ];
151 }
152
153 tie my %report_invoices_open, 'Tie::IxHash',
154   'All open invoices' => [ $fsurl.'search/cust_bill.html?OPEN_date', 'All invoices with an unpaid balance' ],
155   '15 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN15_date', 'Invoices 15 days or older with an unpaid balance' ],
156   '30 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN30_date', 'Invoices 30 days or older with an unpaid balance' ],
157   '60 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN60_date', 'Invoices 60 days or older with an unpaid balance' ],
158   '90 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN90_date', 'Invoices 90 days or older with an unpaid balance' ],
159   '120 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN120_date', 'Invoices 120 days or older with an unpaid balance' ],
160 ;
161
162 tie my %report_invoices, 'Tie::IxHash',
163   'Open invoices' => [ \%report_invoices_open, 'Open invoices' ],
164   'All invoices'  => [ $fsurl. 'search/cust_bill.html?date', 'List all invoices' ],
165   'Advanced invoice reports' => [ $fsurl.'search/report_cust_bill.html', 'by agent, date range, etc.' ],
166   'separator'     => '',
167   'Line items'    => [ $fsurl. 'search/report_cust_bill_pkg.html', 'Individual line item detail' ],
168   'separator'     => '',
169   'Voided invoices' => [ $fsurl.'search/report_cust_bill_void.html', 'Search for voided invoices' ],
170
171 ;
172
173 tie my %report_discounts, 'Tie::IxHash',
174   'Discount graph'  => [ $fsurl. 'graph/report_cust_bill_pkg_discount.html', 'Discount overview per month' ],
175   'Discount detail' => [ $fsurl.'search/report_cust_bill_pkg_discount.html', 'Discount report (by employee and/or date range)' ],
176   #awful name
177   'Package discounts' => [ $fsurl.'search/report_cust_pkg_discount.html', 'Active/inactive discounts by package' ],
178 ;
179
180 tie my %report_services, 'Tie::IxHash';
181 if ( $curuser->access_right('Configuration') ) {
182   $report_services{'Service definitions'} =  [ $fsurl.'browse/part_svc.cgi?orderby=active', 'Service definitions by number of active packages' ];
183   $report_services{'separator'} =  '';
184 }
185
186 if ( $curuser->access_right('List services') ) {
187   $report_services{'Unprovisioned services'} =  [ $fsurl.'search/report_unprovisioned_services.html', 'Unprovisioned services' ];
188   $report_services{'separator2'} =  '';
189 }
190
191 foreach my $svcdb ( FS::part_svc->svc_tables() ) {
192
193   my $name =        "FS::$svcdb"->table_info->{'name_plural'}
194              || PL( "FS::$svcdb"->table_info->{'name'}        );
195   my $lcname =  "FS::$svcdb"->table_info->{'lcname_plural'} || lc($name);
196   my $lcsname = lc("FS::$svcdb"->table_info->{'name'});
197   my $longname = "FS::$svcdb"->table_info->{'longname_plural'} || $name;
198   my $lclongname = lc($longname);
199   my $sorts = "FS::$svcdb"->table_info->{'sorts'} || [ 'svcnum' ];
200   $sorts = [ $sorts ] unless ref($sorts);
201   my %svc_url = ( 'm'      => $m,
202                   'action' => 'search',
203                   'svcdb'  => $svcdb,
204                 );
205
206   tie my %report_svc, 'Tie::IxHash';
207
208   foreach my $sort ( @$sorts ) {
209
210     my $field_info = FS::part_svc->svc_table_fields($svcdb)->{$sort};
211     my $label = $field_info->{'label_sort'} || 'by '.$field_info->{'label'};
212
213     my $title = "All $lcname";
214     $title .= " $label"
215       if scalar(@$sorts) > 1;
216
217     $report_svc{$title} =
218       [ svc_url( %svc_url, 'query' => "magic=all;sortby=$sort" ),
219         '',
220       ];
221   }
222
223   if ( $svcdb eq 'svc_acct' ) {
224
225     $report_svc{"All $lcname never logged in"} = 
226       [ svc_url( %svc_url, 'query' => "magic=nologin;sortby=svcnum" ),
227         '',
228       ];
229
230   } elsif ( $svcdb eq 'svc_phone' ) {
231
232     $report_svc{"${name}' total usage by time period"} = 
233       [ $fsurl. 'search/report_svc_phone_usage.html',
234         'Total usage (minutes, and amount billed) for the specified time period, per phone number.',
235       ];
236     $report_svc{"${name} by state"} =
237       [ $fsurl. 'search/phone_state.html',
238         'Current or historical phone services broken down by state.',
239       ];
240
241   }
242
243   if ( $curuser->access_right('View/link unlinked services') ) {
244     $report_svc{"Unlinked $lcname"} = 
245       [ svc_url( %svc_url, 'query' => "magic=unlinked;sortby=". $sorts->[0] ),
246         "Pre-Freeside $lcname without a customer record",
247       ];
248   }
249
250   if ( $curuser->access_right("Services: $name: Advanced search")
251     && $svcdb =~ /^svc_(acct|broadband|hardware|phone|fiber)$/ ) {
252
253     $report_svc{"Advanced $lcsname reports"} = 
254       [ $fsurl."search/report_$svcdb.html", '' ]
255   }
256
257   if ( $svcdb eq 'svc_phone' ) {
258
259     $report_svc{"Phone number (DID) availability"} =
260       [ $fsurl."search/report_phone_avail.html", '' ];
261     $report_svc{"Inventory/Provisioning Status"} =
262       [ $fsurl."search/phone_inventory_provisioned.html", '' ];
263
264   } elsif ( $svcdb eq 'svc_dsl' ) {
265
266     $report_svc{'Qualifications'} = [ $fsurl. 'search/qual.cgi', #XXX qual.html
267                                       '',
268                                     ];
269
270   }
271
272   $report_services{$name} = [ \%report_svc, $longname ]
273     if $curuser->access_right("Services: $name");
274
275 }
276
277 ## adding export test reports
278 tie my %report_exports, 'Tie::IxHash';
279 my $exports = FS::part_export::export_info();
280 my $exportname;
281 tie my %export_list, 'Tie::IxHash',
282   '' => '',
283   map { $_ => "$_ - ". $exports->{$_}{desc} }
284   sort { $a cmp $b }
285   keys %$exports;
286 ;
287
288 foreach my $export (keys %export_list) {
289   $report_exports{"$export export test"} =
290     [ $fsurl. 'search/report_svc_export_test.cgi?export='.$export,
291       "Report of invalid service setup for services tied to $export export",
292     ] if "FS::part_export::$export"->can('test_export_report');
293 }
294 $report_services{'exports'} = [ \%report_exports, "Exports" ];
295
296 tie my %report_packages, 'Tie::IxHash';
297 $report_packages{'Package definitions (by # active)'} =  [ $fsurl.'browse/part_pkg.cgi?active=1', 'Package definitions by number of active packages' ]
298   if    $curuser->access_right('Edit package definitions')
299      || $curuser->access_right('Edit global package definitions');
300 $report_packages{'Package costs'} = [ $fsurl.'graph/report_cust_pkg_cost.html', 'Package setup and recurring costs graph' ]
301   if $curuser->access_right('Financial reports');
302 $report_packages{'separator'} =  ''
303   if keys %report_packages;
304 if ( $curuser->access_right('Financial reports') ) {
305   $report_packages{'Package churn'} =  [ $fsurl.'graph/report_cust_pkg.html', 'Orders, suspensions and cancellations summary graph' ];
306   $report_packages{'separator2'} =  '';
307 }
308 $report_packages{'All customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?pkgnum', 'List all customer packages', ];
309 $report_packages{'Package summary'} = [ $fsurl.'search/cust_pkg_summary.html', 'Show package sales summary', ]
310   if $curuser->access_right('Summarize packages');
311 $report_packages{'Suspended customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?magic=suspended', 'List suspended packages' ];
312 $report_packages{'Suspension summary'} = [ $fsurl.'search/cust_pkg_susp.html', 'Show suspension activity', ]
313   if $curuser->access_right('Summarize packages');
314 $report_packages{'Customer packages with unconfigured services'} =  [ $fsurl.'search/cust_pkg.cgi?APKG_pkgnum', 'List packages which have provisionable services' ];
315 $report_packages{'FCC Form 477'} =  [ $fsurl.'search/report_477.html' ]
316   if $conf->exists('part_pkg-show_fcc_options');
317 $report_packages{'Contract end dates'} = [ $fsurl.'search/report_cust_pkg-date.html?date=contract_end', 'Show packages by contract end date' ];
318 $report_packages{'Advanced package reports'} =  [ $fsurl.'search/report_cust_pkg.html', 'by agent, date range, status, package definition' ];
319
320 tie my %report_inventory, 'Tie::IxHash',
321   'Inventory by agent' => [ $fsurl.'search/report_agent_inventory.html', '' ],
322   'Inventory activity' => [ $fsurl.'search/report_h_inventory_item.html', '' ],
323 ;
324
325 tie my %report_rating, 'Tie::IxHash';
326 $report_rating{'RADIUS sessions'} = [ $fsurl.'search/sqlradius.html', '' ]
327   if $curuser->access_right("Usage: RADIUS sessions");
328 $report_rating{'RADIUS data usage'} = [ $fsurl.'search/report_sqlradius_usage.html', '' ]
329   if $curuser->access_right("Usage: RADIUS sessions");
330 $report_rating{'Call Detail Records (CDRs)'} = [ $fsurl.'search/report_cdr.html', '' ]
331   if $curuser->access_right("Usage: Call Detail Records (CDRs)");
332 $report_rating{'Unrateable CDRs'} = [ $fsurl.'search/cdr.html?freesidestatus=failed;cdrbatchnum=_ALL_' ]
333   if $curuser->access_right("Usage: Unrateable CDRs");
334 $report_rating{'Customer CDRs Profit/Loss'} = [ $fsurl.'search/report_customer_cdr_profit.html', 'Profit/loss from customer CDRs' ]
335   if $curuser->access_right('Financial reports');
336 if ( $curuser->access_right("Usage: Time worked") ) {
337   $report_rating{'Time worked'} = [ $fsurl.'search/report_rt_transaction.html', '' ];
338   $report_rating{'Time worked summary per ticket'} = [ $fsurl.'search/report_rt_ticket.html', '' ];
339   $report_rating{'Time worked summary per customer'} = [ $fsurl.'search/report_rt_cust.html', '' ];
340 }
341
342 tie my %report_ticketing_statistics, 'Tie::IxHash',
343   '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' ],
344   'Ticket status by Queue'            => [ $fsurl.'rt/RTx/Statistics/OpenStalled', 'View numbers of new, open and stalled tickets in a selected Queue' ],
345   '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' ],
346   'Tickets per Day of Week'           => [ $fsurl.'rt/RTx/Statistics/DayOfWeek', 'View trends showing when tickets are created, resolved or deleted' ],
347   'Time to resolve'                   => [ $fsurl.'rt/RTx/Statistics/Resolution', 'View how long tickets take to be resolved by Queue' ],
348   'Time to resolve (scatter graph)'   => [ $fsurl.'rt/RTx/Statistics/TimeToResolve', 'View a detailed scatter graph of time to resolve tickets by Queue' ],
349 ;
350
351 tie my %report_ticketing, 'Tie::IxHash',
352 # fix TimeToResolve extension?  or redo in a more modern way?
353 #  'Resolved by owner'       => [ $fsurl.'rt/Tools/Reports/ResolvedByOwner.html', '' ],
354 #  'Resolved in date range'  => [ $fsurl.'rt/Tools/Reports/ResolvedByDates.html', '' ],
355 #  'Created in date range'   => [ $fsurl.'rt/Tools/Reports/CreatedByDates.html', '' ],
356 #  'separator'               => '',
357   'Statistics'              => [ \%report_ticketing_statistics, '' ],
358   'separator2'              => '',
359   'Advanced ticket reports' => [ $fsurl.'rt/Search/Build.html?NewQuery=1', 'List tickets by any criteria' ],
360 ;
361
362 tie my %report_bill_event, 'Tie::IxHash',
363   'Billing event errors' => [ $fsurl.'search/report_cust_event.html?failed=1', 'Failed credit cards, processor or printer problems, etc.' ],
364 ;
365
366 tie my %report_payments, 'Tie::IxHash';
367 $report_payments{'Payments'} = [ $fsurl.'search/report_cust_pay.html', 'Payment report (by type and/or date range)' ]
368   if $curuser->access_right('Basic payment and refund reports');
369 $report_payments{'Payment application detail'} = [ $fsurl.'search/report_cust_bill_pay_pkg.html', 'Line item application detail' ]
370   if $curuser->access_right('Financial reports');
371 $report_payments{'Pending Payments'} = [ $fsurl.'search/cust_pay_pending.html?magic=_date;statusNOT=done', 'Pending real-time payments' ]
372   if $curuser->access_right('View customer pending payments');
373 $report_payments{'Unapplied Payments'} = [ $fsurl.'search/report_cust_pay.html?unapplied=1', 'Unapplied payment report (by type and/or date range)' ]
374   if $curuser->access_right('Financial reports'); #not enforced
375 $report_payments{'Voided Payments'} = [ $fsurl.'search/report_cust_pay.html?void=1', 'Voided payment report (by type and/or date range)' ]
376   if $curuser->access_right('Financial reports'); #not enforced
377 $report_payments{'Payment Batches'} = [ $fsurl.'search/pay_batch.html', 'Payment batches (by status and/or date range)' ]
378   if ( $conf->exists('batch-enable') || $conf->config('batch-enable_payby') )
379   && $curuser->access_right('Financial reports');
380 $report_payments{'Unapplied Payment Aging'} = [ $fsurl.'search/report_unapplied_cust_pay.html', 'Unapplied payment aging report' ]
381   if $curuser->access_right('Financial reports');
382 $report_payments{'Deleted Payments / Payment history table'} = [ $fsurl.'search/report_h_cust_pay.html', 'Deleted payments / payment history table' ]
383   if $conf->exists('payment-history-report')
384   && $curuser->access_right('Financial reports');
385
386 tie my %report_credits, 'Tie::IxHash',
387   'Credit Report' => [ $fsurl.'search/report_cust_credit.html', 'Credit report (by employee and/or date range)' ],
388   'Credit package source detail' => [ $fsurl.'search/report_cust_credit_source_bill_pkg.html', 'Line-item detail for triggered package credits' ],
389   'Credit application detail' => [ $fsurl.'search/report_cust_credit_bill_pkg.html', 'Line item application detail' ],
390   'Unapplied Credits' => [ $fsurl.'search/report_cust_credit.html?unapplied=1', 'Unapplied credit report (by type and/or date range)' ],
391   'Voided Credits' => [ $fsurl.'search/report_cust_credit_void.html', 'Voided credit report (by employee and/or date range)' ],
392 ;
393
394 tie my %report_refunds, 'Tie::IxHash',
395   'Refund Report' => [ $fsurl.'search/report_cust_refund.html', 'Refund report (by type and/or date range)' ],
396   'Unapplied Refunds' => [ $fsurl.'search/report_cust_refund.html?unapplied=1', 'Unapplied refund report (by type and/or date range)' ],
397 ;
398
399 tie my %report_sales, 'Tie::IxHash',
400   'Sales, Credits and Receipts' => [ $fsurl.'graph/report_money_time.html', 'Sales, credits and receipts summary graph' ],
401   'Daily Sales, Credits and Receipts' => [ $fsurl.'graph/report_money_time_daily.html', 'Sales, credits and receipts (broken down by day) summary graph' ],
402   'Sales Report' => [ $fsurl.'graph/report_cust_bill_pkg.html', 'Sales report and graph (by agent, package class and/or date range)' ],
403   '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)' ],
404   'Sales with Advertising Source' => [ $fsurl.'search/report_cust_bill_pkg_referral.html' ],
405 ;
406
407 tie my %report_commissions, 'Tie::IxHash',
408   'Agent' => [ $fsurl.'search/report_agent_commission.html' ],
409   'Agent per package' => [ $fsurl.'search/report_agent_commission_pkg.html' ],
410   'Sales Person' => [ $fsurl.'search/report_sales_commission.html' ],
411   'Sales Person per package' => [ $fsurl.'search/report_sales_commission_pkg.html' ],
412   'Employee' => [ $fsurl.'search/report_employee_commission.html', '' ],
413   'Agent Credits and Payments' => [ $fsurl.'search/report_agent_credit_payment.html' ],
414 ;
415
416 tie my %report_financial, 'Tie::IxHash';
417 if( $curuser->access_right('Financial reports') ) {
418
419   %report_financial = (
420     'Sales'       => [ \%report_sales, 'Sales reports', ],
421     'Commissions' => [ \%report_commissions, 'Commission reports', ],
422     'Credits'     => [ \%report_credits, 'Credit reports', ],
423     'Refunds'     => [ \%report_refunds, 'Refund reports', ],
424   );
425   $report_financial{'A/R Aging'} = [ $fsurl.'search/report_receivables.html', 'Accounts Receivable Aging report' ];
426   $report_financial{'Prepaid Income'} = [ $fsurl.'search/report_prepaid_income.html', 'Prepaid income (unearned revenue)  report' ];
427
428   my $taxproducts = $conf->config('tax_data_vendor');
429   $report_financial{'Tax Liability'. ($taxproducts ? ' (internal tax data)' : '')} = [ $fsurl.'search/report_tax.html', 'Tax liability report (internal tax data)' ];
430   $report_financial{'Tax Liability (vendor tax data)'} = [ $fsurl.'search/report_newtax.html', 'Tax liability report (vendor tax data)' ]
431     if $taxproducts;
432
433   $report_financial{'Monthly Sales and Taxes'} = [$fsurl.'search/tax_sales.html', 'Monthly sales and taxes report'];
434
435   # most sites don't need this but there isn't really a config to enable it
436   $report_financial{'E911 Fee Summary'} = [ $fsurl.'search/report_e911.html', 'E911 fee summary' ];
437
438   $report_financial{'Customer Accounting Summary'} = [ $fsurl.'search/report_customer_accounting_summary.html', 'Customer accounting summary report' ];
439
440   if ( my $report_title = FS::cust_payby->future_autobill_report_title ) {
441     $report_financial{$report_title} = [ $fsurl.'search/report_future_autobill.html', "$report_title for customers with automatic payment methods (by date)" ];
442   }
443
444 } elsif($curuser->access_right('Receivables report')) {
445
446   $report_financial{'A/R Aging'} = [ $fsurl.'search/report_receivables.html', 'Accounts Receivable Aging report' ];
447
448 } # else $report_financial contains nothing.
449
450 tie my %report_payable, 'Tie::IxHash',
451   'Payables summary' => [ $fsurl. 'search/report_vend_main.html', 'Payables summary by vendor' ],
452   'Payables detail' => [ $fsurl. 'search/report_vend_bill.html' ],
453 ;
454
455 tie my %report_logs, 'Tie::IxHash';
456 $report_logs{'Billing events'} =  [ $fsurl.'search/report_cust_event.html', 'Search billing events by date and status' ]
457   if $curuser->access_right('Billing event reports');
458 $report_logs{'Billing event fees'} =  [ $fsurl.'search/report_cust_event_fee.html', 'Search fees triggered by billing events' ]
459   if $curuser->access_right('Billing event reports');
460 $report_logs{'Credit limit incidents'} = [ $fsurl.'search/report_cust_main_credit_limit.html', '' ]
461   if $curuser->access_right('List rating data');
462 $report_logs{'System log'} = [ $fsurl.'search/log.html', 'View system events and debugging information.' ],
463   if $curuser->access_right('View system logs')
464   || $curuser->access_right('Configuration');
465 $report_logs{'Outgoing messages'} = [ $fsurl.'search/cust_msg.html', 'View outgoing message log' ]
466   if $curuser->access_right('View email logs')
467   || $curuser->access_right('Configuration');
468
469 tie my %report_employee, 'Tie::IxHash',
470   'Employee activity' => [ $fsurl.'search/report_employee_audit.html', '' ],
471   'Employee sessions' => [ $fsurl.'search/report_access_user_session_log.html', '' ],
472   'Access log statistics' => [ $fsurl.'search/report_access_user_log.html?group_by=path', '' ],
473 ;
474
475 tie my %report_menu, 'Tie::IxHash';
476 $report_menu{'Saved searches'} = [ \%report_saved_searches, 'My saved searches' ]
477   if keys(%report_saved_searches);
478 $report_menu{'Prospects'}      = [ \%report_prospects, 'Prospect reports' ]
479   if $curuser->access_right('List prospects')
480   || $curuser->access_right('List contacts');
481 $report_menu{'Quotations'}     = [ \%report_quotations, 'Quotation reports' ]
482   if $curuser->access_right('List quotations');
483 $report_menu{'Customers'}      = [ \%report_customers, 'Customer reports'  ]
484   if $curuser->access_right('List customers')
485   || $curuser->access_right('List contacts')
486   || $curuser->access_right('Advanced customer search')
487   || $curuser->access_right('List zip codes')
488   || $curuser->access_right('Financial reports')
489   || $curuser->access_right('Customers: Customer churn report');
490 $report_menu{'Invoices'}       =  [ \%report_invoices,  'Invoice reports'   ]
491   if $curuser->access_right('List invoices');
492 $report_menu{'Discounts'}      =  [ \%report_discounts, 'Discount reports'  ]
493   if $curuser->access_right('Financial reports');
494 $report_menu{'Payments'}       =  [ \%report_payments,  'Payment reports'   ]
495   if keys %report_payments;
496 $report_menu{'Packages'}       =  [ \%report_packages,  'Package reports'   ]
497   if $curuser->access_right('List packages');
498 $report_menu{'Services'}       =  [ \%report_services,  'Services reports'  ]
499   if $curuser->access_right('List services');
500 $report_menu{'Inventory'}      =  [ \%report_inventory,  'Inventory reports'  ]
501   if $curuser->access_right('Configuration'); #XXX List inventory?
502 $report_menu{'Usage'}          =  [ \%report_rating,    'Usage reports'  ]
503   if $curuser->access_right('List rating data');
504 $report_menu{'Tickets'}        = [ \%report_ticketing, 'Ticket reports' ]
505   if $conf->config('ticket_system')
506   ;#&& FS::TicketSystem->access_right(\%session, 'Something');
507 $report_menu{'Financial (Receivables)'} = [ \%report_financial, 'Financial reports (Receivables)' ]
508   if $curuser->access_right('Financial reports') 
509   or $curuser->access_right('Receivables report');
510 $report_menu{'Financial (Payables)'} = [ \%report_payable, 'Financial reports (Payables)' ]
511   if $curuser->access_right('Financial reports');
512
513 $report_menu{'Employees'}      = [ \%report_employee, 'Employee reports' ]
514   if $curuser->access_right('Employee Reports');
515 $report_menu{'Logs'}           = [ \%report_logs, 'System and email logs' ]
516   if (keys %report_logs); # empty if the user has no rights to it
517 $report_menu{'SQL Query'}      = [ $fsurl.'search/report_sql.html', 'SQL Query']
518   if $curuser->access_right('Raw SQL');
519
520 tie my %tools_customers, 'Tie::IxHash', ();
521 $tools_customers{'Appointments'} = [ $fsurl.'rt/Search/Schedule.html?LengthMin=0', 'View appointment schedule' ]
522   if $curuser->access_right('View appointments');
523 $tools_customers{'Attachments'} = [ $fsurl.'search/report_cust_attachment.html', 'View customer attachments' ]
524   if !$conf->config('disable_cust_attachment') and $curuser->access_right('View attachments') and $curuser->access_right('Browse attachments');
525 $tools_customers{'Customer email settings'} = [ $fsurl.'misc/manage_cust_email.html' ]
526   if $curuser->access_right('Edit customer');
527
528 tie my %tools_billing, 'Tie::IxHash', ();
529 $tools_billing{'Quick payment entry'} =  [ $fsurl.'misc/batch-cust_pay.html', 'Enter multiple payments in a batch' ]
530   if $curuser->access_right('Post payment batch');
531 $tools_billing{'Process payment batches'} = [ $fsurl.'search/pay_batch.cgi?magic=_date;open=1;intransit=1', 'Process credit card and electronic check batches' ]
532   if ( $conf->exists('batch-enable') || $conf->config('batch-enable_payby') )
533      && $curuser->access_right('Process batches');
534 $tools_billing{'Download invoice batches'} = [ $fsurl.'search/bill_batch.cgi' ]
535   if $curuser->access_right('Process invoice batches')
536   || $curuser->access_right('Process global invoice batches')
537   || $curuser->access_right('Configuration'); #XXX remove in 2.5
538   #now there's a standalone event#if $conf->exists('invoice_print_pdf');
539
540 tie my %tools_importing, 'Tie::IxHash',
541   'Customers'            => [ $fsurl.'misc/cust_main-import.cgi', '' ],
542   'Package definitions'  => [ $fsurl.'misc/part_pkg-import.html', '' ],
543   'Customer packages'    => [ $fsurl.'misc/cust_pkg-import.html', '' ],
544 #  'Customer broadband services' => [ $fsurl.'misc/svc_broadband-import.html', '' ],
545   'Customer notes'       => [ $fsurl.'misc/cust_main_note-import.html', '' ],
546   'Customer contacts'    => [ $fsurl.'misc/contact-import.cgi', '' ],
547   'One-time charges'     => [ $fsurl.'misc/cust_main-import_charges.cgi', '' ],
548   'Payments'             => [ $fsurl.'misc/cust_pay-import.cgi', '' ],
549   'Credits'              => [ $fsurl.'misc/cust_credit-import.html', '' ],
550   'Phone numbers (DIDs)' => [ $fsurl.'misc/phone_avail-import.html', '' ],
551   'Call Detail Records (CDRs)' => [ $fsurl.'misc/cdr-import.html', '' ],
552 ;
553 if ( $conf->config('tax_data_vendor') ) {
554   if ( $conf->exists('taxdatadirectdownload') ) {
555       $tools_importing{'Tax rates from vendor site'} =
556       [ $fsurl.'misc/tax-fetch_and_import.cgi', '' ];
557   } else {
558     $tools_importing{'Tax rates from CSV files'} =
559       [ $fsurl.'misc/tax-import.cgi', '' ];
560   }
561 }
562
563 tie my %tools_misc, 'Tie::IxHash', ();
564 $tools_misc{'Bulk DID Orders'} =  [ $fsurl.'browse/did_order.html', 'View/manage bulk DID orders' ]
565   if $curuser->access_right('Import');
566 $tools_misc{'Business card scan'} = [ $fsurl.'edit/prospect_main-upload.html' ]
567   if $curuser->access_right('New prospect');
568 $tools_misc{'Time Queue'} =  [ $fsurl.'search/report_timeworked.html', 'View pending support time' ]
569   if $curuser->access_right('Time queue');
570
571 #tie my %tools_exporting, 'Tie::IxHash',
572 #  'Download database dump' => [ $fsurl. 'misc/dump.cgi', '' ],
573 #;
574
575 tie my %tools_ticketing_articles, 'Tie::IxHash',
576   'Overview' => [ $fsurl.'rt/Articles/index.html', '' ],
577   'Search'   => [ $fsurl.'rt/Articles/Article/Search.html', '' ],
578   'Topics'   => [ $fsurl.'rt/Articles/Topics.html', '' ],
579 ;
580
581 tie my %tools_ticketing, 'Tie::IxHash',
582   'Articles'     => [ \%tools_ticketing_articles, '' ],
583   'My Day'       => [ $fsurl.'rt/Tools/MyDay.html', '' ],
584   'My Reminders' => [ $fsurl.'rt/Tools/MyReminders.html', '' ],
585   'Offline'      => [ $fsurl.'rt/Tools/Offline.html', '' ],
586   'Approval'     => [ $fsurl.'rt/Approvals/', '' ],
587 ;
588 $tools_ticketing{'Cron Tool'} = [ $fsurl.'rt/Developer/CronTool/', '' ]
589   if $conf->exists('rt-crontool');
590
591 tie my %tools_system, 'Tie::IxHash', ();
592 $tools_system{'Status'} = [ $fsurl.'view/Status.html', 'System status' ]
593   if $curuser->access_right('Configuration'); # 'View system status');
594 $tools_system{'Job Queue'} =  [ $fsurl.'search/queue.html', 'View pending job queue' ]
595   if $curuser->access_right('Job queue');
596
597 tie my %tools_menu, 'Tie::IxHash', ();
598 $tools_menu{'Customers'} = [ \%tools_customers, 'Customer tools' ]
599   if keys %tools_customers;
600 $tools_menu{'Billing'} = [ \%tools_billing, 'Payment and invoice tools' ]
601   if keys %tools_billing;
602 $tools_menu{'Ticketing'} = [ \%tools_ticketing, 'Ticketing tools' ]
603   if $conf->config('ticket_system');
604 $tools_menu{'Miscellaneous'} = [ \%tools_misc, '' ]
605   if keys %tools_misc;
606 $tools_menu{'Importing'} =  [ \%tools_importing, 'Import tools' ]
607   if $curuser->access_right('Import');
608 #$tools_menu{'Exporting'} =  [ \%tools_exporting, 'Export tools' ]
609 #  if $curuser->access_right('Export');
610 $tools_menu{'System'} = [ \%tools_system, 'System tools' ]
611   if keys %tools_menu;
612
613 tie my %config_employees, 'Tie::IxHash',
614   'Employees' => [ $fsurl.'browse/access_user.html', 'Setup internal users' ],
615   'Employee groups and access control' => [ $fsurl.'browse/access_group.html', 'Employee groups allow you to control access to the backend' ],
616   'Installer availability' => [ $fsurl.'browse/sched_item.html', 'Installer availability' ],
617 ;
618
619 tie my %config_dialup, 'Tie::IxHash',
620   'Access numbers' => [ $fsurl.'browse/svc_acct_pop.cgi', 'Points of Presence' ],
621 ;
622
623 tie my %config_broadband, 'Tie::IxHash',
624   'Towers'         => [ $fsurl.'browse/tower.html', 'Towers and sectors' ],
625   'Routers'        => [ $fsurl.'browse/router.cgi', 'Broadband access routers' ],
626   'Address blocks' => [ $fsurl.'browse/addr_block.cgi', 'Manage address blocks and block assignments to broadband routers' ],
627 ;
628 if ( $curuser->access_right('Broadband global configuration') ) {
629   $config_broadband{'Address ranges'} = 
630                       [ $fsurl.'browse/addr_range.html', 'Designate special address ranges' ];
631 }
632
633 tie my %config_phone, 'Tie::IxHash',
634   'View/Edit phone device types' => [ $fsurl.'browse/part_device.html', 'Phone device types' ],
635   'View/Edit bulk DID vendors' => [ $fsurl.'browse/did_vendor.html', 'Bulk DID vendors' ],
636   'View/Edit Carriers' => [ $fsurl.'browse/cdr_carrier.html', 'Carriers' ],
637 ;
638
639 tie my %config_radius, 'Tie::IxHash',
640   'RADIUS Groups' => [ $fsurl.'browse/radius_group.html', 'Manage RADIUS groups' ],
641   'RADIUS Clients' => [ $fsurl.'browse/nas.html', 'Manage RADIUS clients' ],
642 ;
643
644 tie my %config_cable, 'Tie::IxHash',
645   'Cable providers' => [ $fsurl.'browse/cable_provider.html', '' ],
646   'Cable modem models' => [ $fsurl.'browse/cable_model.html', '' ],
647 ;
648
649 tie my %config_alarm, 'Tie::IxHash',
650   'Alarm system vendors'   => [ $fsurl.'browse/alarm_system.html', '' ],
651   'Alarm system types'     => [ $fsurl.'browse/alarm_type.html', '' ],
652   'Alarm central stations' => [ $fsurl.'browse/alarm_station.html', '' ],
653 ;
654
655 tie my %config_conferencing, 'Tie::IxHash',
656   'Conferencing types' => [ $fsurl.'browse/conferencing_type.html', '' ],
657   'Quality levels'     => [ $fsurl.'browse/conferencing_quality.html', '' ],
658 ;
659
660 tie my %config_circuit, 'Tie::IxHash',
661   'Circuit types'     => [ $fsurl.'browse/circuit_type.html',         '' ],
662   'Circuit providers' => [ $fsurl.'browse/circuit_provider.html',     '' ],
663   'Termination types' => [ $fsurl.'browse/circuit_termination.html',  '' ],
664 ;
665
666 tie my %config_fiber, 'Tie::IxHash',
667   'OLTs' => [ $fsurl.'browse/fiber_olt.html', '' ],
668 ;
669
670 tie my %config_export_svc, 'Tie::IxHash', ();
671 if ( $curuser->access_right('Configuration') ) {
672   $config_export_svc{'Service definitions'} = [ $fsurl.'browse/part_svc.cgi', 'Services are items you offer to your customers' ];
673   $config_export_svc{'Service classes'} = [ $fsurl.'browse/part_svc_class.html', 'Services classes are user-defined, informational types for services' ];
674   $config_export_svc{'Service dependencies'} = [ $fsurl.'browse/part_svc_link.html', 'Services depencies define rules between service definitions' ];
675   $config_export_svc{'Provisioning exports'} = [ $fsurl.'browse/part_export.cgi', 'Provisioning services to external machines, databases and APIs' ];
676 }
677 $config_export_svc{'Dialup'}  = [ \%config_dialup, ''    ]
678   if $curuser->access_right('Dialup configuration');
679 $config_export_svc{'Wireless broadband'} = [ \%config_broadband, ''    ]
680   if $curuser->access_right('Broadband configuration');
681 $config_export_svc{'Phone'}  = [ \%config_phone, ''    ]
682   if $curuser->access_right('Configuration');
683 $config_export_svc{'RADIUS'} = [ \%config_radius, '' ]
684   if $curuser->access_right('Configuration');
685 $config_export_svc{'Cable'} = [ \%config_cable, '' ]
686   if $curuser->access_right('Configuration');
687 $config_export_svc{'Conferencing'} = [ \%config_conferencing, '' ]
688   if $curuser->access_right('Configuration');
689 $config_export_svc{'Alarm'} = [ \%config_alarm, '' ]
690   if $curuser->access_right(['Alarm configuration', 'Alarm global configuration']);
691 $config_export_svc{'Circuits'} = [ \%config_circuit, '' ]
692   if $curuser->access_right('Configuration');
693 $config_export_svc{'Fiber'} = [ \%config_fiber, '' ]
694   if $curuser->access_right('Configuration');
695 $config_export_svc{'Hardware types'} = [ $fsurl.'browse/hardware_class.html', 'Set up hardware type catalog' ]
696   if $curuser->access_right('Configuration');
697
698 tie my %config_pkg_reason, 'Tie::IxHash',
699   'Cancel reasons' => [ $fsurl.'browse/reason_type.html?class=C', 'Cancel reasons explain why a service was cancelled.' ],
700   'Suspend reasons' => [ $fsurl.'browse/reason_type.html?class=S', 'Suspend reasons explain why a service was suspended.' ],
701 ;
702
703 tie my %config_pkg, 'Tie::IxHash', ();
704 $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' ]
705   if    $curuser->access_right('Edit package definitions')
706      || $curuser->access_right('Edit global package definitions');
707 if ( $curuser->access_right('Configuration') ) {
708
709   #package grouping sub-menu?
710   $config_pkg{'Package classes'} =  [ $fsurl.'browse/pkg_class.html', 'Package classes define groups of packages, for taxation, ordering convenience and reporting.' ];
711   $config_pkg{'Package categories'} =  [ $fsurl.'browse/pkg_category.html', 'Package categories define groups of package classes, for invoice sections.' ];
712   $config_pkg{'Package report classes'} =  [ $fsurl.'browse/part_pkg_report_option.html', 'Package classes define optional groups of packages for reporting only.' ];
713   #eo package grouping sub-menu
714
715   if ( $curuser->access_right([ 'Edit fee definitions',
716                                 'Edit global fee definitions' ]) ) {
717     $config_pkg{'Fees'} = [ $fsurl.'browse/part_fee.html', '' ];
718   }
719   $config_pkg{'Discounts'} = [ $fsurl.'browse/discount.html', '' ];
720   $config_pkg{'Discount classes'} = [ $fsurl.'browse/discount_class.html', '' ];
721   $config_pkg{'Cancel/Suspend Reasons'} = [ \%config_pkg_reason, '' ];
722 }
723
724 tie my %config_cust, 'Tie::IxHash',
725   'Customer tags'       => [ $fsurl.'browse/part_tag.html', '' ],
726   'Customer classes'    =>  [ $fsurl.'browse/cust_class.html', 'Customer classes define groups of customers for reporting.' ],
727   'Customer categories' =>  [ $fsurl.'browse/cust_category.html', 'Customer categories define groups of customer classes.' ],
728   'separator'     => '', #its a separator!
729   'Contact types'    =>  [ $fsurl.'browse/contact_class.html', ''], #XXX useful description
730 ;
731   
732 $config_cust{'Note classes'} = [ $fsurl.'browse/cust_note_class.html', 'Note classes define groups of customer notes for reporting.' ];
733
734 tie my %config_agent, 'Tie::IxHash',
735   'Agent types' => [ $fsurl.'browse/agent_type.cgi', 'Agent types define groups of package definitions that you can then assign to particular agents' ],
736   '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)' ],
737   'Agent payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors for agent overrides' ],
738   'separator' => '',
739   'Commission schedules' => [ $fsurl.'browse/commission_schedule.html',
740     'Commission schedules for consecutive billing periods' ],
741 ;
742
743 tie my %config_sales, 'Tie::IxHash',
744   'Sales People' => [ $fsurl.'browse/sales.html', 'Sales people bring in new business.' ],
745 ;
746
747 tie my %config_billing_rates, 'Tie::IxHash';
748 $config_billing_rates{'Rate plans'} = [ $fsurl.'browse/rate.cgi', 'Manage rate plans' ]
749   if $curuser->access_right('Edit CDR rates')
750   #|| $curuser->access_right('Edit global CDR rates')
751   || $curuser->access_right('Configuration');
752 if ( $curuser->access_right('Configuration') ) {
753   $config_billing_rates{'Regions and prefixes'} = [ $fsurl.'browse/rate_region.html', 'Manage regions and prefixes' ];
754   $config_billing_rates{'Usage classes'} = [ $fsurl.'browse/usage_class.html', 'Usage classes define groups of usage for taxation.' ];
755   $config_billing_rates{'Time periods'} = [ $fsurl.'browse/rate_time.html', 'Time periods define days and hours for rate plans' ];
756   $config_billing_rates{'Edit rates with Excel'} = [ $fsurl.'misc/rate_edit_excel.html', 'Download and edit rates with Excel, then upload changes.' ]; #"Edit with Excel" ?
757   $config_billing_rates{'separator'} = ''; #its a separator!
758   $config_billing_rates{'Tiering plans'} = [ $fsurl.'browse/rate_tier.html', 'Rating tiers' ];
759 }
760
761 tie my %config_billing, 'Tie::IxHash';
762 #  'Payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors' ];
763 $config_billing{'Billing events'} = [ $fsurl.'browse/part_event.html', 'Billing actions for customers, invoices and packages' ]
764     if $curuser->access_right('Edit billing events')
765     || $curuser->access_right('Edit global billing events');
766 if ( $curuser->access_right('Configuration') ) {
767   $config_billing{'Invoice configurations'}      = [ $fsurl.'browse/invoice_conf.html', 'Adjust invoice settings for special-purpose notices' ];
768   $config_billing{'Invoice templates'}      = [ $fsurl.'browse/invoice_template.html', 'Edit templates for HTML, plaintext and typeset invoices' ];
769   $config_billing{'separator'} = ''; #its a separator!
770   $config_billing{'Prepaid cards'}          = [ $fsurl.'search/prepay_credit.html', 'View outstanding cards, generate new cards' ];
771 }
772 $config_billing{'Call rates and regions'} = [ \%config_billing_rates, 'Manage rate plans, regions and prefixes for VoIP and call billing' ]
773   if keys %config_billing_rates;
774 if ( $curuser->access_right('Configuration') ) {
775   $config_billing{'separator2'} = ''; #its a separator!
776
777   my $config_taxes_name = 'Locales and tax rates'.
778                           ( $conf->config('tax_data_vendor')
779                             ? ' (internal tax class system)'
780                             : ''
781                           );
782   $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' ];
783   $config_billing{'Tax rates (vendor data tax products system)'}  = [ $fsurl.'browse/tax_rate.cgi', 'Edit tax rates for the vendor data tax products system' ]
784      if $conf->config('tax_data_vendor');
785   $config_billing{'Tax classes'} = [ $fsurl. 'browse/part_pkg_taxclass.html', 'Tax classes' ];
786
787   if ( $conf->config('currencies') ) {
788     $config_billing{'separator3'} = ''; #its a separator!
789     $config_billing{'Exchange rates'} = [ $fsurl.'edit/currency_exchange.html', 'Currency exchange rates' ];
790   }
791
792   $config_billing{'separator4'} = ''; #its a separator!
793   $config_billing{'Credit reasons'}  = [ $fsurl.'browse/reason_type.html?class=R', 'Credit reasons explain why a credit was issued.' ];
794   
795   $config_billing{'Refund reasons'}  = [ $fsurl.'browse/reason_type.html?class=F', 'Refund reasons explain why a refund was issued.' ];
796
797   $config_billing{'Invoice void reasons'}  = [ $fsurl.'browse/reason_type.html?class=I', 'Invoice void reasons explain why an invoice was voided.' ];
798   $config_billing{'Payment void reasons'}  = [ $fsurl.'browse/reason_type.html?class=P', 'Payment void reasons explain why a payment was voided.' ];
799   $config_billing{'Credit void reasons'}  = [ $fsurl.'browse/reason_type.html?class=X', 'Credit void reasons explain why a credit was voided.' ];
800 }
801
802 #XXX also to be unified
803 tie my %config_ticketing_groups, 'Tie::IxHash',
804   'Select' => [ $fsurl.'rt/Admin/Groups', '' ],
805   'Create' => [ $fsurl.'rt/Admin/Groups/Modify.html?Create=1', '' ],
806 ;
807
808 tie my %config_ticketing_queues, 'Tie::IxHash',
809   'Select' => [ $fsurl.'rt/Admin/Queues', '' ],
810   'Create' => [ $fsurl.'rt/Admin/Queues/Modify.html?Create=1', '' ],
811 ;
812
813 tie my %config_ticketing_customfields, 'Tie::IxHash',
814   'Select' => [ $fsurl.'rt/Admin/CustomFields', '' ],
815   'Create' => [ $fsurl.'rt/Admin/CustomFields/Modify.html?Create=1', '' ],
816 ;
817
818 tie my %config_ticketing_articles_classes, 'Tie::IxHash',
819   'Select' => [ $fsurl.'rt/Admin/Articles/Classes/', '' ],
820   'Create' => [ $fsurl.'rt/Admin/Articles/Classes/Modify.html?Create=1', '' ],
821 ;
822
823 tie my %config_ticketing_articles_customfields, 'Tie::IxHash',
824   'Select' => [ $fsurl.'rt/Admin/CustomFields/index.html?type=RT%3A%3AClass-RT%3A%3AArticle', '' ],
825   'Create' => [ $fsurl.'rt/Admin/CustomFields/Modify.html?Create=1&LookupType=RT%3A%3AClass-RT%3A%3AArticle', '' ],
826 ;
827
828 tie my %config_ticketing_articles, 'Tie::IxHash',
829   'Classes'       => [ \%config_ticketing_articles_classes, '' ],
830   'Custom Fields' => [ \%config_ticketing_articles_customfields, '' ],
831 ;
832
833 tie my %config_ticketing, 'Tie::IxHash',
834   'Ticketing Users'      => [ $fsurl.'rt/Admin/Users', 'Edit ticketing users' ], #XXX to be unified
835   'Ticketing Groups'     => [ \%config_ticketing_groups, 'View/Edit ticketing groups and group membership' ], #XXX to be unified
836   'Ticketing Queues'     => [ \%config_ticketing_queues, 'View/Edit ticketing queues and queue-specific properties' ], 
837   'Ticket Custom Fields' => [ \%config_ticketing_customfields, 'View/Edit ticketing custom fields' ], 
838   'Ticketing Global'     => [ $fsurl.'rt/Admin/Global', 'View/Edit ticketing configuration applicable to all queues' ], #XXX the individual items
839   'Ticketing Articles'   => [ \%config_ticketing_articles, '' ],
840   #"System Configuraiton"?  useless, just makes people report errors about missing Module::Versions::Report #'Ticketing Tools'     => [ $fsurl.'rt/Admin/Tools', '' ], 
841 ;
842
843 tie my %config_nms, 'Tie::IxHash',
844   'View/Edit virtual ports' => [ $fsurl.'browse/torrus_srvderive.html', '' ],
845 ;
846
847 tie my %config_misc, 'Tie::IxHash';
848 $config_misc{'Message templates'} = [ $fsurl.'browse/msg_template/email.html', 'Templates for customer notices' ]
849   if $curuser->access_right(['View templates', 'View global templates',
850                              'Edit templates', 'Edit global templates', ]);
851 $config_misc{'Advertising sources'} = [ $fsurl.'browse/part_referral.html', 'Where a customer heard about your service.' ]
852   if $curuser->access_right('Edit advertising sources')
853   || $curuser->access_right('Edit global advertising sources');
854 $config_misc{'Custom fields'} = [ $fsurl.'browse/part_virtual_field.html', 'Locally defined fields', ]
855   if $curuser->access_right('Edit custom fields');
856 $config_misc{'Translation strings'} = [ $fsurl.'browse/msgcat.html', 'Translations and other customizable labels for each locale' ]
857   if $curuser->access_right('Configuration');
858 $config_misc{'Inventory classes and inventory'} = [ $fsurl.'browse/inventory_class.html', 'Setup inventory classes and stock inventory' ]
859   if $curuser->access_right('Edit inventory')
860   || $curuser->access_right('Edit global inventory')
861   || $curuser->access_right('Configuration');
862
863 $config_misc{'Real estate inventory'} = [ $fsurl.'browse/realestate_unit.html', 'Setup real estate inventory' ]
864   if $curuser->access_right('Edit realestate inventory')
865   || $curuser->access_right('Edit global inventory')
866   || $curuser->access_right('Configuration');
867
868 $config_misc{'Upload targets'} = [ $fsurl.'browse/upload_target.html', 'Billing and payment upload destinations' ]
869   if $curuser->access_right('Configuration');
870
871 $config_misc{'System log emails'} = [ $fsurl.'browse/log_email.html', 'Configure conditions for sending email when logging' ]
872   if $curuser->access_right('View system logs')
873   || $curuser->access_right('Configuration');
874
875 tie my %config_menu, 'Tie::IxHash';
876 if ( $curuser->access_right('Configuration' ) ) {
877   %config_menu = (
878     'Settings'      => [ $fsurl.'config/config-view.cgi', '' ],
879     'separator'     => '', #its a separator!
880     'Companies'     => [ \%config_agent, '' ],
881   );
882 }
883
884 $config_menu{'Sales People'}  = [ \%config_sales, '' ]
885   if $curuser->access_right('Edit sales people');
886
887 if ( $curuser->access_right('Configuration' ) ) {
888   $config_menu{'Employees'}  = [ \%config_employees, '' ];
889   $config_menu{'separator2'} = ''; #its a separator!
890   $config_menu{'Customers'}  = [ \%config_cust, '' ];
891     #or this? 'Customers and Contacts'
892 }
893
894 $config_menu{'Packages'} = [ \%config_pkg, '' ]
895   if    $curuser->access_right('Configuration' )
896      || $curuser->access_right('Edit package definitions')
897      || $curuser->access_right('Edit global package definitions');
898
899 if ( $curuser->access_right('Configuration') ) {
900   $config_menu{'Services'} = [ \%config_export_svc, '' ];
901   $config_menu{separator3} = '';
902 }
903
904 tie my %config_vendor, 'Tie::IxHash',
905   'Vendor classes' => [ $fsurl.'browse/vend_class.html', '' ],
906   'Vendors'        => [ $fsurl.'browse/vend_main.html', '' ],
907 ;
908
909 if ( $curuser->access_right('Configuration') ) {
910   $config_menu{'Vendors'} = [ \%config_vendor, '' ];
911   $config_menu{separator4} = '';
912 }
913
914 $config_menu{'Billing'} = [ \%config_billing, '' ]
915   if keys %config_billing;
916 $config_menu{'Ticketing'} = [ \%config_ticketing, '' ]
917   if $conf->config('ticket_system')
918   && eval { FS::TicketSystem->access_right(\%session, 'ShowConfigTab') };
919 $config_menu{'Network Monitoring'} = [ \%config_nms, '' ]
920   if $curuser->access_right('Configure network monitoring')
921   && $conf->config('network_monitoring_system') eq 'Torrus_Internal';
922
923 if ( $curuser->access_right([ 'Configuration',
924                               'View templates',
925                               'View global templates',
926                               'Edit templates',
927                               'Edit global templates',
928                            ])
929    ) {
930   $config_menu{separator9} = '' if keys %config_menu;
931   $config_menu{'Miscellaneous'} = [ \%config_misc, ''    ];
932 }
933
934
935 my $wiki = 'http://www.freeside.biz/mediawiki/index.php';
936 my $doc_link = $conf->config('support-key')
937                  ? "$wiki/Supported:Documentation"
938                  : $curuser->access_right('Configuration')
939                    ? "$wiki/Freeside:4:Documentation"
940                    : "$wiki/Freeside:2.1:Documentation:User"; #no page for other versions yet :/
941
942 eval "use RT;"
943   if $conf->config('ticket_system') eq 'RT_Internal';
944
945 tie my %help_menu, 'Tie::IxHash';
946 my $agentnum = $conf->config('brand-agent');
947 if ( $agentnum ) {
948   my $company_name = $conf->config('company_name', $agentnum);
949   $help_menu{"About $company_name"} = [ "javascript:about_freeside()", '' ];
950 } else {
951   $help_menu{'Billing documentation'} = [ $doc_link, 'Freeside documentation' ];
952   $help_menu{'Ticketing documentation'} = [ 'http://wiki.bestpractical.com/', 'Request Tracker Wiki' ]
953     if $conf->config('ticket_system') eq 'RT_Internal';
954   $help_menu{'Networking monitoring documentation'} = [ 'http://torrus.org/userguide.pod.html', 'Torrus User Guide' ]
955     if $conf->config('network_monitoring_system') eq 'Torrus_Internal';
956   $help_menu{'Developer documentation'} = [ "${fsurl}docs/library/FS.html", 'Developer documentation' ];
957   $help_menu{'separator'} = '';
958   $help_menu{"About Freeside v$FS::VERSION"} = [ "javascript:about_freeside()", '' ];
959   $help_menu{"About RT v$RT::VERSION"} = [ 'http://www.bestpractical.com/rt', 'Request Tracker Homepage' ]
960     if $conf->config('ticket_system') eq 'RT_Internal';
961   $help_menu{"About Torrus v1.0.9"} = [ 'http://www.torrus.org/', 'Torrus Homepage' ] #XXX manual version
962     if $conf->config('network_monitoring_system') eq 'Torrus_Internal';
963 }
964
965
966 tie my %menu, 'Tie::IxHash';
967
968 if ( $conf->config('menu-prepend_links')) {
969   my @links = split(/\n/, $conf->config('menu-prepend_links'));
970   foreach my $link (@links) {
971     $link =~ /^\s*(\S+)\s+(.*?)(\s*\(([^\)]*)\))?$/ or next;
972     my($url, $label, $alt) = ($1, $2, $4);
973     $menu{$label} = [ $url, $alt ];
974   }
975 }
976
977 $menu{'Billing Main'} = [ $fsurl, 'Billing start page', ];
978
979 if ( $conf->config('ticket_system') ) {
980   $menu{'Ticketing Main'} =
981     [ 
982       ( $conf->config('ticket_system') eq 'RT_External'
983         ? FS::TicketSystem->baseurl()
984         : $fsurl.'rt/'
985       ),
986       'Ticketing start page',
987     ],
988 }
989
990 if ( $conf->config('network_monitoring_system') eq 'Torrus_Internal' &&
991   $curuser->access_right('Configure network monitoring') ) {
992   $menu{'Network Main'} =
993     [ $fsurl.'torrus/main', 'Network monitoring start page' ],
994 }
995
996 $menu{'New prospect'} = [ $fsurl.'edit/prospect_main.html', 'Add a new prospect' ]
997   if $curuser->access_right('New prospect');
998 $menu{'New customer'} = [ $fsurl.'edit/cust_main.cgi', 'Add a new customer' ]
999   if $curuser->access_right('New customer');
1000 $menu{'Reports'} = [ \%report_menu, 'Lists, reporting and graphing' ]
1001   if keys %report_menu;
1002 $menu{'Tools'} = [ \%tools_menu, 'Tools' ]
1003   if keys %tools_menu;
1004 $menu{'Configuration'} = [ \%config_menu, 'Configuration and setup' ]
1005   if $curuser->access_right([ 'Configuration',
1006                               'Edit package definitions',
1007                               'Edit global package definitions',
1008                               'Edit billing events',
1009                               'Edit global billing events',
1010                               'Dialup configuration',
1011                               'Wireless broadband configuration',
1012                               'Phone configuration',
1013                               'Alarm configuration',
1014                               'Alarm global configuration',
1015                               'Edit advertising sources',
1016                               'Edit global advertising sources',
1017                               'View templates',
1018                               'View global templates',
1019                               'Edit templates',
1020                               'Edit global templates',
1021                            ]);
1022 $menu{'Help'} = [ \%help_menu, '' ];
1023
1024
1025 use vars qw($gmenunum);
1026 $gmenunum = 0;
1027
1028 sub submenu {
1029   my($submenu, $title) = @_;
1030   my $menunum = $gmenunum++;
1031
1032   #return two args: html, menuname
1033
1034   "var myMenu$menunum = new WebFXMenu;\n".
1035   #"myMenu$menunum.useAutoPosition = true;\n".
1036 #  "myMenu$menunum.emptyText = '$title';\n".
1037   "myMenu$menunum.emptyText = '';\n".
1038
1039   (
1040     join("\n", map {
1041
1042       if ( !ref( $submenu->{$_} ) ) {
1043
1044         "myMenu$menunum.add(new WebFXMenuSeparator());";
1045
1046       } else {
1047
1048         my($url_or_submenu, $tooltip ) = @{ $submenu->{$_} };
1049         if ( ref($url_or_submenu) ) {
1050
1051           my($subhtml, $submenuname ) = submenu($url_or_submenu, $_); #mmm, recursion
1052
1053           "$subhtml\n".
1054           "myMenu$menunum.add(new WebFXMenuItem(\"".mt($_)."\", null, \"".mt($tooltip)."\", $submenuname ));";
1055
1056         } else {
1057
1058           "myMenu$menunum.add(new WebFXMenuItem(\"".mt($_)."\", \"$url_or_submenu\", \"".mt($tooltip)."\" ));";
1059
1060         }
1061
1062       }
1063
1064     } keys %$submenu )
1065   ). "\n".
1066   "myMenu$menunum.width = 256;\n",
1067
1068   "myMenu$menunum";
1069
1070 }
1071
1072 </%init>