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