borg RT menus, RT#1169
[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 <link href="<%$fsurl%>elements/freeside.css" type="text/css" rel="stylesheet">
16
17 <SCRIPT TYPE="text/javascript">
18
19   webfxMenuImagePath      = "<%$fsurl%>images/";
20   webfxMenuUseHover       = 1;
21   webfxMenuShowTime       = 300;
22   webfxMenuHideTime       = 500;
23
24   var myBar = new WebFXMenuBar;
25
26 % foreach my $item ( keys %menu ) {
27 %
28 %     my( $url_or_submenu, $tooltip ) = @{ $menu{$item} };
29 %
30 %     if ( ref($url_or_submenu) ) {
31 %
32 %         #warn $item;
33 %
34 %         my( $subhtml, $submenuname ) = submenu($url_or_submenu, $item);
35
36           <% $subhtml |n %>
37           myBar.add(new WebFXMenuButton("<% $item %>", null, "<% $tooltip %>", <% $submenuname |n %> ));
38
39 %     } else { 
40     
41           myBar.add(new WebFXMenuButton("<% $item %>", "<% $url_or_submenu %>", "<% $tooltip %>" ));
42
43 %     }
44 %
45 % }
46
47   myBar.show( null, 'vertical' );
48   myBar.width = 154;
49
50 </SCRIPT>
51
52 <%init>
53 my( %opt ) = @_;
54 my $conf = new FS::Conf;
55 my $fsurl = $opt{'freeside_baseurl'};
56
57 my $curuser = $FS::CurrentUser::CurrentUser;
58
59 #XXX Active tickets not assigned to a customer
60
61 tie my %report_customers_lists, 'Tie::IxHash',
62   'by customer number' => [ $fsurl. 'search/cust_main.cgi?browse=custnum', '' ],
63   'by last name' => [ $fsurl. 'search/cust_main.cgi?browse=last', '' ],
64   'by company name' => [ $fsurl. 'search/cust_main.cgi?browse=company', '' ],
65 ;
66 $report_customers_lists{'by active trouble tickets'} = [ $fsurl. 'search/cust_main.cgi?browse=tickets', '' ]
67   if $conf->config('ticket_system');
68
69 tie my %report_customers_search, 'Tie::IxHash';
70 $report_customers_search{'by ordering employee'} = [ $fsurl. 'search/cust_main-otaker.cgi' ]
71   if $curuser->access_right('Configuration');
72
73 tie my %report_customers, 'Tie::IxHash';
74 $report_customers{'List customers'} = [ \%report_customers_lists, 'List customers' ]
75   if $curuser->access_right('List customers');
76 $report_customers{'Search customers'} = [ \%report_customers_search, 'Search customers' ]
77   if keys %report_customers_search;
78 $report_customers{'Zip code distribution'}     = [ $fsurl. 'search/report_cust_main-zip.html', 'Zip codes by number of customers' ];
79 $report_customers{'Advanced customer reports'} = [ $fsurl. 'search/report_cust_main.html', 'by status, signup date, agent, etc.' ]
80   if    $curuser->access_right('List customers')
81      && $curuser->access_right('List packages');
82
83 tie my %report_invoices_open, 'Tie::IxHash',
84   'All open invoices' => [ $fsurl.'search/cust_bill.html?OPEN_date', 'All invoices with an unpaid balance' ],
85   '15 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN15_date', 'Invoices 15 days or older with an unpaid balance' ],
86   '30 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN30_date', 'Invoices 30 days or older with an unpaid balance' ],
87   '60 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN60_date', 'Invoices 60 days or older with an unpaid balance' ],
88   '90 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN90_date', 'Invoices 90 days or older with an unpaid balance' ],
89   '120 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN120_date', 'Invoices 120 days or older with an unpaid balance' ],
90 ;
91
92 tie my %report_invoices, 'Tie::IxHash',
93   'Open invoices' => [ \%report_invoices_open, 'Open invoices' ],
94   'All invoices'  => [ $fsurl. 'search/cust_bill.html?date', 'List all invoices' ],
95   'Advanced invoice reports' => [ $fsurl.'search/report_cust_bill.html', 'by agent, date range, etc.' ],
96 ;
97
98 tie my %report_services, 'Tie::IxHash';
99 if ( $curuser->access_right('Configuration') ) {
100   $report_services{'Service definitions'} =  [ $fsurl.'browse/part_svc.cgi?orderby=active', 'Service definitions by number of active packages' ];
101   $report_services{'separator'} =  '';
102 }
103 foreach my $svcdb ( FS::part_svc->svc_tables() ) {
104
105   my $name =        "FS::$svcdb"->table_info->{'name_plural'}
106              || PL( "FS::$svcdb"->table_info->{'name'}        );
107   my $lcname = lc($name);
108   my $lcsname = lc("FS::$svcdb"->table_info->{'name'});
109   my $longname = "FS::$svcdb"->table_info->{'longname_plural'} || $name;
110   my $lclongname = lc($longname);
111   my $sorts = "FS::$svcdb"->table_info->{'sorts'} || [ 'svcnum' ];
112   $sorts = [ $sorts ] unless ref($sorts);
113   my %svc_url = ( 'm'      => $m,
114                   'action' => 'search',
115                   'svcdb'  => $svcdb,
116                 );
117
118   tie my %report_svc, 'Tie::IxHash';
119
120   foreach my $sort ( @$sorts ) {
121
122     my $field_info = FS::part_svc->svc_table_fields($svcdb)->{$sort};
123     my $label = $field_info->{'label_sort'} || 'by '.$field_info->{'label'};
124
125     my $title = "All $lcname";
126     $title .= " $label"
127       if scalar(@$sorts) > 1;
128
129     $report_svc{$title} =
130       [ svc_url( %svc_url, 'query' => "magic=all;sortby=$sort" ),
131         '',
132       ];
133   }
134
135   if ( $svcdb eq 'svc_acct' ) {
136     $report_svc{"All $lcname never logged in"} = 
137       [ svc_url( %svc_url, 'query' => "magic=nologin;sortby=svcnum" ),
138         '',
139       ];
140   }
141
142   if ( $curuser->access_right('View/link unlinked services') ) {
143     $report_svc{"Unlinked $lcname"} = 
144       [ svc_url( %svc_url, 'query' => "magic=unlinked;sortby=". $sorts->[0] ),
145         "Pre-Freeside $lcname without a customer record",
146       ];
147   }
148
149   if ( $svcdb eq 'svc_acct' ) {
150     $report_svc{"Advanced $lcsname reports"} = 
151       [ $fsurl."search/report_$svcdb.html", '' ];
152   }
153
154   $report_services{$name} = [ \%report_svc, $longname ];
155
156 }
157
158 tie my %report_packages, 'Tie::IxHash';
159 if (    $curuser->access_right('Edit package definitions')
160      || $curuser->access_right('Edit global package definitions')
161    )
162 {
163   $report_packages{'Package definitions'} =  [ $fsurl.'browse/part_pkg.cgi?active=1', 'Package definitions by number of active packages' ];
164   $report_packages{'separator'} =  '';
165 }
166 if ( $curuser->access_right('Financial reports') ) {
167   $report_packages{'Package churn'} =  [ $fsurl.'graph/report_cust_pkg.html', 'Orders, suspensions and cancellations summary graph' ];
168   $report_packages{'separator2'} =  '';
169 }
170 $report_packages{'All customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?pkgnum', 'List all customer packages', ];
171 $report_packages{'Suspended customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?magic=suspended', 'List suspended packages' ];
172 $report_packages{'Customer packages with unconfigured services'} =  [ $fsurl.'search/cust_pkg.cgi?APKG_pkgnum', 'List packages which have provisionable services' ];
173 $report_packages{'FCC Form 477 packages'} =  [ $fsurl.'search/report_477.html', 'Summarize packages by census tract for particular types' ]
174   if $conf->exists('cust_main-require_censustract');
175 $report_packages{'Advanced package reports'} =  [ $fsurl.'search/report_cust_pkg.html', 'by agent, date range, status, package definition' ];
176
177 tie my %report_rating, 'Tie::IxHash',
178   'RADIUS sessions' => [ $fsurl.'search/sqlradius.html', '' ],
179   'Call Detail Records (CDRs)' => [ $fsurl.'search/report_cdr.html', '' ],
180   'Time worked' => [ $fsurl.'search/report_rt_transaction.html', '' ],
181 ;
182
183 tie my %report_ticketing_statistics, 'Tie::IxHash',
184   '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' ],
185   'Ticket status by Queue'            => [ $fsurl.'rt/RTx/Statistics/OpenStalled', 'View numbers of new, open and stalled tickets in a selected Queue' ],
186   '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' ],
187   'Tickets per Day of Week'           => [ $fsurl.'rt/RTx/Statistics/DayOfWeek', 'View trends showing when tickets are created, resolved or deleted' ],
188   'Time to resolve'                   => [ $fsurl.'rt/RTx/Statistics/Resolution', 'View how long tickets take to be resolved by Queue' ],
189   'Time to resolve (scatter graph)'   => [ $fsurl.'rt/RTx/Statistics/TimeToResolve', 'View a detailed scatter graph of time to resolve tickets by Queue' ],
190 ;
191
192 tie my %report_ticketing, 'Tie::IxHash',
193   'Resolved by owner'       => [ $fsurl.'rt/Tools/Reports/ResolvedByOwner.html', '' ],
194   'Resolved in date range'  => [ $fsurl.'rt/Tools/Reports/ResolvedByDates.html', '' ],
195   'Created in date range'   => [ $fsurl.'rt/Tools/Reports/CreatedByDates.html', '' ],
196   'separator'               => '',
197   'Statistics'              => [ \%report_ticketing_statistics, '' ],
198   'separator2'              => '',
199   'Advanced ticket reports' => [ $fsurl.'rt/Search/Build.html', 'List tickets by any criteria' ],
200 ;
201
202 tie my %report_bill_event, 'Tie::IxHash',
203   'All billing events' => [ $fsurl.'search/report_cust_event.html', 'All billing events for a date range' ],
204   'Billing event errors' => [ $fsurl.'search/report_cust_event.html?failed=1', 'Failed credit cards, processor or printer problems, etc.' ],
205   'All invoice events' => [ $fsurl.'search/cust_bill_event.html', 'Reports on deprecated, old-style invoice events for a date range' ],
206   '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.' ],
207 ;
208
209 tie my %report_financial, 'Tie::IxHash';
210 if($curuser->access_right('Financial reports')) {
211
212   %report_financial = (
213     'Sales, Credits and Receipts' => [ $fsurl.'graph/report_money_time.html', 'Sales, credits and receipts summary graph' ],
214     'Sales Report' => [ $fsurl.'graph/report_cust_bill_pkg.html', 'Sales report and graph (by agent, package class and/or date range)' ],
215     'Credit Report' => [ $fsurl.'search/report_cust_credit.html', 'Credit report (by employee and/or date range)' ],
216     'Payment Report' => [ $fsurl.'search/report_cust_pay.html', 'Payment report (by type and/or date range)' ],
217   );
218   $report_financial{'Pending Payment Report'} = [ $fsurl.'search/cust_pay_pending.html?magic=_date;statusNOT=done', 'Pending real-time payments' ]
219     if $curuser->access_right('View customer pending payments');
220   $report_financial{'Payment Batch Report'} = [ $fsurl.'search/pay_batch.html', 'Payment batches (by status and/or date range)' ]
221     if $conf->exists('batch-enable') || $conf->config('batch-enable_payby');
222   $report_financial{'A/R Aging'} = [ $fsurl.'search/report_receivables.html', 'Accounts Receivable Aging report' ];
223   $report_financial{'Prepaid Income'} = [ $fsurl.'search/report_prepaid_income.html', 'Prepaid income (unearned revenue)  report' ];
224   $report_financial{'Sales Tax Liability'} = [ $fsurl.'search/report_tax.html', 'Sales tax liability report (internal taxclass system)' ];
225   $report_financial{'Tax Liability'} = [ $fsurl.'search/report_newtax.html', 'Tax liability report (vendor data tax products system)' ]
226     if $conf->exists('enable_taxproducts');
227
228 } elsif($curuser->access_right('Receivables report')) {
229
230   $report_financial{'A/R Aging'} = [ $fsurl.'search/report_receivables.html', 'Accounts Receivable Aging report' ];
231
232 } # else $report_financial contains nothing.
233
234 tie my %report_menu, 'Tie::IxHash';
235 $report_menu{'Customers'}   = [ \%report_customers, 'Customer reports'  ]
236   if $curuser->access_right('List customers');
237 $report_menu{'Invoices'}    =  [ \%report_invoices,  'Invoice reports'   ]
238   if $curuser->access_right('List invoices');
239 $report_menu{'Packages'}    =  [ \%report_packages,  'Package reports'   ]
240   if $curuser->access_right('List packages');
241 $report_menu{'Services'}    =  [ \%report_services,  'Services reports'  ]
242   if $curuser->access_right('List services');
243 $report_menu{'Usage'} =  [ \%report_rating,    'Usage reports'  ]
244   if $curuser->access_right('List rating data');
245 $report_menu{'Tickets'}   = [ \%report_ticketing, 'Ticket reports' ]
246   if $conf->config('ticket_system')
247   ;#&& FS::TicketSystem->access_right(\%session, 'Something');
248 $report_menu{'Billing events'} =  [ \%report_bill_event, 'Billing events' ]
249   if $curuser->access_right('Billing event reports');
250 $report_menu{'Financial'}  = [ \%report_financial, 'Financial reports' ]
251   if $curuser->access_right('Financial reports') 
252   or $curuser->access_right('Receivables report');
253 $report_menu{'SQL Query'}  = [ $fsurl.'search/report_sql.html', 'SQL Query' ]
254   if $curuser->access_right('Raw SQL');
255
256 tie my %tools_importing, 'Tie::IxHash',
257   'Customers' => [ $fsurl.'misc/cust_main-import.cgi', '' ],
258   'Customer comments from CSV file' => [ $fsurl.'misc/cust_main_note-import.html', '' ],
259   'One-time charges from CSV file' => [ $fsurl.'misc/cust_main-import_charges.cgi', '' ],
260   'Payments from CSV file' => [ $fsurl.'misc/cust_pay-import.cgi', '' ],
261   'Phone numbers (DIDs)' => [ $fsurl.'misc/phone_avail-import.html', '' ],
262   'Call Detail Records (CDRs)' => [ $fsurl.'misc/cdr-import.html', '' ],
263 #  'Import call rates and regions' => [ $fsurl.'misc/rate-import.html', '' ],
264 ;
265 if ( $conf->exists('enable_taxproducts') ) {
266   if ( $conf->exists('taxdatadirectdownload') ) {
267       $tools_importing{'Tax rates from vendor site'} =
268       [ $fsurl.'misc/tax-fetch_and_import.cgi', '' ];
269   } else {
270     $tools_importing{'Tax rates from CSV files'} =
271       [ $fsurl.'misc/tax-import.cgi', '' ];
272   }
273 }
274
275 tie my %tools_exporting, 'Tie::IxHash',
276   'Download database dump' => [ $fsurl. 'misc/dump.cgi', '' ],
277 ;
278
279 #    <!-- <BR>View active NAS ports: 
280 #      <A HREF="browse/nas.cgi">session server</A> -->
281 #      <!-- or <A HREF="browse/nas-sqlradius.cgi">RADIUS</A>
282 #    <BR> -->
283
284 tie my %tools_ticketing, 'Tie::IxHash',
285   'Offline'      => [ $fsurl.'rt/Tools/Offline.html', '' ],
286   'My Day'       => [ $fsurl.'rt/Tools/MyDay.html', '' ],
287   'My Approvals' => [ $fsurl.'rt/Approvals/', '' ],
288 ;
289 $tools_ticketing{'Cron Tool'} = [ $fsurl.'rt/Developer/CronTool/', '' ]
290   if $conf->exists('rt-crontool');
291
292 tie my %tools_menu, 'Tie::IxHash', ();
293 $tools_menu{'Quick payment entry'} =  [ $fsurl.'misc/batch-cust_pay.html', 'Enter multiple payments in a batch' ]
294   if $curuser->access_right('Post payment batch');
295 $tools_menu{'Process payment batches'} = [ $fsurl.'search/pay_batch.cgi?magic=_date;open=1;intransit=1', 'Process credit card and electronic check batches' ]
296   if ( $conf->exists('batch-enable') || $conf->config('batch-enable_payby') )
297      && $curuser->access_right('Process batches');
298 $tools_menu{'Job Queue'} =  [ $fsurl.'search/queue.html', 'View pending job queue' ]
299   if $curuser->access_right('Job queue');
300 $tools_menu{'Ticketing'} = [ \%tools_ticketing, 'Ticketing tools' ]
301   if $conf->config('ticket_system');
302 $tools_menu{'Time Queue'} =  [ $fsurl.'search/timeworked.html', 'View pending support time' ]
303   if $curuser->access_right('Time queue');
304 $tools_menu{'Importing'} =  [ \%tools_importing, 'Import tools' ]
305   if $curuser->access_right('Import');
306 $tools_menu{'Exporting'} =  [ \%tools_exporting, 'Export tools' ]
307   if $curuser->access_right('Export');
308
309 tie my %config_employees, 'Tie::IxHash',
310   'Employees' => [ $fsurl.'browse/access_user.html', 'Setup internal users' ],
311   'Employee groups' => [ $fsurl.'browse/access_group.html', 'Employee groups allow you to control access to the backend' ],
312 ;
313
314 tie my %config_export_svc, 'Tie::IxHash', ();
315 if ( $curuser->access_right('Configuration') ) {
316   $config_export_svc{'Exports'} = [ $fsurl.'browse/part_export.cgi', 'Provisioning services to external machines, databases and APIs' ];
317   $config_export_svc{'Service definitions'} = [ $fsurl.'browse/part_svc.cgi', 'Services are items you offer to your customers' ];
318 }
319
320 tie my %config_pkg, 'Tie::IxHash', ();
321 $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' ]
322   if    $curuser->access_right('Edit package definitions')
323      || $curuser->access_right('Edit global package definitions');
324 if ( $curuser->access_right('Configuration') ) {
325   $config_pkg{'Package categories'} =  [ $fsurl.'browse/pkg_category.html', 'Package categories define groups of package classes, for reporting and convenience purposes.' ];
326   $config_pkg{'Package tax classes'} =  [ $fsurl.'browse/pkg_class.html', 'Package classes define groups of packages, for reporting and convenience purposes.' ];
327   $config_pkg{'Package report classes'} =  [ $fsurl.'browse/part_pkg_report_option.html', 'Package classes define optional groups of packages for reporting purposes.' ];
328   $config_pkg{'Cancel reason types'} = [ $fsurl.'browse/reason_type.html?class=C', 'Cancel reason types define groups of reasons, for reporting and convenience purposes.' ];
329   $config_pkg{'Cancel reasons'} = [ $fsurl.'browse/reason.html?class=C', 'Cancel reasons explain why a service was cancelled.' ];
330   $config_pkg{'Suspend reason types'} = [ $fsurl.'browse/reason_type.html?class=S', 'Suspend reason types define groups of reasons, for reporting and convenience purposes.' ];
331   $config_pkg{'Suspend reasons'} = [ $fsurl.'browse/reason.html?class=S', 'Suspend reasons explain why a service was suspended.' ];
332 }
333
334 tie my %config_agent, 'Tie::IxHash',
335   'Agent types' => [ $fsurl.'browse/agent_type.cgi', 'Agent types define groups of package definitions that you can then assign to particular agents' ],
336   '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)' ],
337   'Agent payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors for agent overrides' ];
338 ;
339
340 tie my %config_billing_rates, 'Tie::IxHash',
341   'Rate plans' => [ $fsurl.'browse/rate.cgi', 'Manage rate plans' ],
342   'Regions and prefixes' => [ $fsurl.'browse/rate_region.html', 'Manage regions and prefixes' ],
343   'Usage classes'  => [ $fsurl.'browse/usage_class.html', 'Usage classes define groups of usage for taxation purposes.' ],
344   'Edit rates with Excel' => [ $fsurl.'misc/rate_edit_excel.html', 'Download and edit rates with Excel, then upload changes.' ], #"Edit with Excel" ?
345 ;
346
347 tie my %config_billing, 'Tie::IxHash';
348 #  'Payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors' ];
349 $config_billing{'Billing events'} = [ $fsurl.'browse/part_event.html', 'Billing actions for customers, invoices and packages' ]
350     if $curuser->access_right('Edit billing events')
351     || $curuser->access_right('Edit global billing events');
352 if ( $curuser->access_right('Configuration') ) {
353   #$config_billing{'Invoice events'}         = [ $fsurl.'browse/part_bill_event.cgi', 'Deprecated, old-style actions for overdue invoices' ];
354   $config_billing{'Invoice templates'}      = [ $fsurl.'browse/invoice_template.html', 'Edit templates for HTML, plaintext and typeset invoices' ];
355   $config_billing{'Prepaid cards'}          = [ $fsurl.'search/prepay_credit.html', 'View outstanding cards, generate new cards' ];
356   $config_billing{'Call rates and regions'} = [ \%config_billing_rates, 'Manage rate plans, regions and prefixes for VoIP and call billing' ];
357
358   my $config_taxes_name = 'Locales and tax rates'.
359                           ( $conf->exists('enable_taxproducts')
360                             ? ' (internal tax class system)'
361                             : ''
362                           );
363   $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' ];
364   $config_billing{'Tax rates (vendor data tax products system)'}  = [ $fsurl.'browse/tax_rate.cgi', 'Edit tax rates for the vendor data tax products system' ]
365      if $conf->exists('enable_taxproducts');
366
367   $config_billing{'Credit reason types'}  = [ $fsurl.'browse/reason_type.html?class=R', 'Credit reason types define groups of reasons, for reporting and convenience purposes.' ];
368   $config_billing{'Credit reasons'}  = [ $fsurl.'browse/reason.html?class=R', 'Credit reasons explain why a credit was issued.' ];
369 }
370
371 tie my %config_ticketing, 'Tie::IxHash',
372   'Ticketing Users'      => [ $fsurl.'rt/Admin/Users', 'View/Edit ticketing users' ], #XXX to be unified
373   'Ticketing Groups'     => [ $fsurl.'rt/Admin/Groups', 'View/Edit ticketing groups' ], #XXX to be unified
374   'Ticketing Queues'     => [ $fsurl.'rt/Admin/Queues', '' ], 
375   'Ticket Custom Fields' => [ $fsurl.'rt/Admin/CustomFields', '' ], 
376   'Ticketing Global'     => [ $fsurl.'rt/Admin/Global', 'Global ticketing configuration' ], 
377   #'Ticketing Tools'     => [ $fsurl.'rt/Admin/Tools', '' ], 
378 ;
379
380 tie my %config_dialup, 'Tie::IxHash',
381   'Access numbers' => [ $fsurl.'browse/svc_acct_pop.cgi', 'Points of Presence' ],
382 ;
383
384 tie my %config_broadband, 'Tie::IxHash',
385   'Routers'        => [ $fsurl.'browse/router.cgi', 'Broadband access routers' ],
386   'Address blocks' => [ $fsurl.'browse/addr_block.cgi', 'Manage address blocks and block assignments to broadband routers' ],
387 ;
388
389 tie my %config_phone, 'Tie::IxHash',
390   'View/Edit phone device types' => [ $fsurl.'browse/part_device.html', 'Phone device types' ],
391 ;
392
393 tie my %config_misc, 'Tie::IxHash';
394 $config_misc{'Advertising sources'} = [ $fsurl.'browse/part_referral.html', 'Where a customer heard about your service.  Tracked for informational purposes' ]
395   if $curuser->access_right('Edit advertising sources')
396   || $curuser->access_right('Edit global advertising sources');
397 if ( $curuser->access_right('Configuration') ) {
398   $config_misc{'Virtual fields'} = [ $fsurl.'browse/part_virtual_field.cgi', 'Locally defined fields', ];
399   $config_misc{'Message catalog'} = [ $fsurl.'browse/msgcat.cgi', 'Change error messages and other customizable labels' ];
400   $config_misc{'Inventory classes and inventory'} = [ $fsurl.'browse/inventory_class.html', 'Setup inventory classes and stock inventory' ];
401 }
402
403 tie my %config_menu, 'Tie::IxHash';
404 if ( $curuser->access_right('Configuration' ) ) {
405   %config_menu = (
406     'Settings'      => [ $fsurl.'config/config-view.cgi', '' ],
407     'separator'     => '', #its a separator!
408     'Employees'     => [ \%config_employees, '' ],
409   );
410 }
411 $config_menu{'Provisioning and services'} = [ \%config_export_svc, '' ]
412   if $curuser->access_right('Configuration' );
413 $config_menu{'Packages'} = [ \%config_pkg, '' ]
414   if    $curuser->access_right('Configuration' )
415      || $curuser->access_right('Edit package definitions')
416      || $curuser->access_right('Edit global package definitions');
417 $config_menu{'Resellers'} = [ \%config_agent, ''    ]
418   if $curuser->access_right('Configuration');
419 $config_menu{'Billing'} = [ \%config_billing, ''    ]
420   if $curuser->access_right('Edit billing events')
421   || $curuser->access_right('Edit global billing events');
422 $config_menu{'Ticketing'} = [ \%config_ticketing, '' ]
423   if $conf->config('ticket_system')
424   && FS::TicketSystem->access_right(\%session, 'ShowConfigTab');
425 $config_menu{'Dialup'}  = [ \%config_dialup, ''    ]
426   if ( $curuser->access_right('Dialup configuration') );
427 $config_menu{'Fixed (username-less) broadband'} = [ \%config_broadband, ''    ]
428   if ( $curuser->access_right('Broadband configuration') );
429 $config_menu{'Phone'}  = [ \%config_phone, ''    ]
430   if ( $curuser->access_right('Configuration') );
431 $config_menu{'Miscellaneous'} = [ \%config_misc, ''    ]
432   if $curuser->access_right('Edit advertising sources')
433   || $curuser->access_right('Edit global advertising sources');
434
435 tie my %menu, 'Tie::IxHash',
436   'Billing Main'   => [ $fsurl, 'Billing start page', ],
437 ;
438 if ( $conf->config('ticket_system') ) {
439   $menu{'Ticketing Main'} =
440     [ 
441       ( $conf->config('ticket_system') eq 'RT_External'
442         ? FS::TicketSystem->baseurl()
443         : $fsurl.'rt/'
444       ),
445       'Ticketing start page',
446     ],
447 }
448 $menu{'Reports'} = [ \%report_menu, 'Lists, reporting and graphing' ]
449   if keys %report_menu;
450 $menu{'Tools'} = [ \%tools_menu, 'Tools' ]
451   if keys %tools_menu;
452 $menu{'Configuration'} = [ \%config_menu, 'Configuraiton and setup' ]
453   if $curuser->access_right('Configuration')
454   || $curuser->access_right('Edit package definitions')
455   || $curuser->access_right('Edit global package definitions')
456   || $curuser->access_right('Edit billing events')
457   || $curuser->access_right('Edit global billing events')
458   || $curuser->access_right('Dialup configuration')
459   || $curuser->access_right('Broadband configuration')
460   || $curuser->access_right('Phone configuration')
461   || $curuser->access_right('Edit advertising sources')
462   || $curuser->access_right('Edit global advertising sources');
463
464 use vars qw($gmenunum);
465 $gmenunum = 0;
466
467 sub submenu {
468   my($submenu, $title) = @_;
469   my $menunum = $gmenunum++;
470
471   #return two args: html, menuname
472
473   "var myMenu$menunum = new WebFXMenu;\n".
474   #"myMenu$menunum.useAutoPosition = true;\n".
475   "myMenu$menunum.emptyText = '$title';\n".
476
477   (
478     join("\n", map {
479
480       if ( !ref( $submenu->{$_} ) ) {
481
482         "myMenu$menunum.add(new WebFXMenuSeparator());";
483
484       } else {
485
486         my($url_or_submenu, $tooltip ) = @{ $submenu->{$_} };
487         if ( ref($url_or_submenu) ) {
488
489           my($subhtml, $submenuname ) = submenu($url_or_submenu, $_); #mmm, recursion
490
491           "$subhtml\n".
492           "myMenu$menunum.add(new WebFXMenuItem(\"$_\", null, \"$tooltip\", $submenuname ));";
493
494         } else {
495
496           "myMenu$menunum.add(new WebFXMenuItem(\"$_\", \"$url_or_submenu\", \"$tooltip\" ));";
497
498         }
499
500       }
501
502     } keys %$submenu )
503   ). "\n".
504   "myMenu$menunum.width = 256;\n",
505
506   "myMenu$menunum";
507
508 }
509
510 </%init>
511