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