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