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