add batch-enable_payby and realtime_disable_payby for better control over hybrid...
[freeside.git] / httemplate / elements / menu.html
1 <script type="text/javascript" src="<%$fsurl%>elements/cssexpr.js"></script>
2
3 % if ( $opt{'position'} eq 'top' ) {
4
5   <script type="text/javascript" src="<%$fsurl%>elements/xmenu.top.js"></script>
6   <link href="<%$fsurl%>elements/xmenu.top.css" type="text/css" rel="stylesheet">
7
8 % } else {  # elsif ( $opt{'position'} eq 'left' ) {
9
10   <script type="text/javascript" src="<%$fsurl%>elements/xmenu.js"></script>
11   <link href="<%$fsurl%>elements/xmenu.css" type="text/css" rel="stylesheet">
12
13 % }
14
15 <link href="<%$fsurl%>elements/freeside.css" type="text/css" rel="stylesheet">
16
17 <SCRIPT TYPE="text/javascript">
18
19   webfxMenuImagePath      = "<%$fsurl%>images/";
20   webfxMenuUseHover       = 1;
21   webfxMenuShowTime       = 300;
22   webfxMenuHideTime       = 500;
23
24   var myBar = new WebFXMenuBar;
25
26 % foreach my $item ( keys %menu ) {
27 %
28 %     my( $url_or_submenu, $tooltip ) = @{ $menu{$item} };
29 %
30 %     if ( ref($url_or_submenu) ) {
31 %
32 %         #warn $item;
33 %
34 %         my( $subhtml, $submenuname ) = submenu($url_or_submenu, $item);
35
36           <% $subhtml %>
37           myBar.add(new WebFXMenuButton("<% $item %>", null, "<% $tooltip %>", <% $submenuname %> ));
38
39 %     } else { 
40     
41           myBar.add(new WebFXMenuButton("<% $item %>", "<% $url_or_submenu %>", "<% $tooltip %>" ));
42
43 %     }
44 %
45 % }
46
47   myBar.show( null, 'vertical' );
48   myBar.width = 154;
49
50 </SCRIPT>
51
52 <%init>
53 my( %opt ) = @_;
54 my $conf = new FS::Conf;
55 my $fsurl = $opt{'freeside_baseurl'};
56
57 my $curuser = $FS::CurrentUser::CurrentUser;
58
59 #Active tickets not assigned to a customer
60
61 tie my %report_customers_lists, 'Tie::IxHash',
62   'by customer number' => [ $fsurl. 'search/cust_main.cgi?browse=custnum', '' ],
63   'by last name' => [ $fsurl. 'search/cust_main.cgi?browse=last', '' ],
64   'by company name' => [ $fsurl. 'search/cust_main.cgi?browse=company', '' ],
65 ;
66 $report_customers_lists{'by active trouble tickets'} = [ $fsurl. 'search/cust_main.cgi?browse=tickets', '' ]
67   if $conf->config('ticket_system');
68
69 tie my %report_customers_search, 'Tie::IxHash';
70 $report_customers_search{'by ordering employee'} = [ $fsurl. 'search/cust_main-otaker.cgi' ]
71   if $curuser->access_right('Configuration');
72
73 tie my %report_customers, 'Tie::IxHash';
74 $report_customers{'List customers'} = [ \%report_customers_lists, 'List customers' ]
75   if $curuser->access_right('List customers');
76 $report_customers{'Search customers'} = [ \%report_customers_search, 'Search customers' ]
77   if keys %report_customers_search;
78 $report_customers{'Zip code distribution'}     = [ $fsurl. 'search/report_cust_main-zip.html', 'Zip codes by number of customers' ];
79 $report_customers{'Advanced customer reports'} = [ $fsurl. 'search/report_cust_main.html', 'by status, signup date, agent, etc.' ]
80   if    $curuser->access_right('List customers')
81      && $curuser->access_right('List packages');
82
83 tie my %report_invoices_open, 'Tie::IxHash',
84   'All open invoices' => [ $fsurl.'search/cust_bill.html?OPEN_date', 'All invoices with an unpaid balance' ],
85   '15 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN15_date', 'Invoices 15 days or older with an unpaid balance' ],
86   '30 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN30_date', 'Invoices 30 days or older with an unpaid balance' ],
87   '60 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN60_date', 'Invoices 60 days or older with an unpaid balance' ],
88   '90 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN90_date', 'Invoices 90 days or older with an unpaid balance' ],
89   '120 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN120_date', 'Invoices 120 days or older with an unpaid balance' ],
90 ;
91
92 tie my %report_invoices, 'Tie::IxHash',
93   'Open invoices' => [ \%report_invoices_open, 'Open invoices' ],
94   'All invoices'  => [ $fsurl. 'search/cust_bill.html?date', 'List all invoices' ],
95   'Advanced invoice reports' => [ $fsurl.'search/report_cust_bill.html', 'by agent, date range, etc.' ],
96 ;
97
98 tie my %report_services, 'Tie::IxHash';
99 if ( $curuser->access_right('Configuration') ) {
100   $report_services{'Service definitions'} =  [ $fsurl.'browse/part_svc.cgi?orderby=active', 'Service definitions by number of active packages' ];
101   $report_services{'separator'} =  '';
102 }
103 foreach my $svcdb ( FS::part_svc->svc_tables() ) {
104
105   my $name =        "FS::$svcdb"->table_info->{'name_plural'}
106              || PL( "FS::$svcdb"->table_info->{'name'}        );
107   my $lcname = lc($name);
108   my $lcsname = lc("FS::$svcdb"->table_info->{'name'});
109   my $longname = "FS::$svcdb"->table_info->{'longname_plural'} || $name;
110   my $lclongname = lc($longname);
111   my $sorts = "FS::$svcdb"->table_info->{'sorts'} || [ 'svcnum' ];
112   $sorts = [ $sorts ] unless ref($sorts);
113   my %svc_url = ( 'm'      => $m,
114                   'action' => 'search',
115                   'svcdb'  => $svcdb,
116                 );
117
118   tie my %report_svc, 'Tie::IxHash';
119
120   foreach my $sort ( @$sorts ) {
121
122     my $title = "All $lcname";
123     $title .= " by ". FS::part_svc->svc_table_fields($svcdb)->{$sort}->{'label'}
124       if scalar(@$sorts) > 1;
125
126     $report_svc{$title} =
127       [ svc_url( %svc_url, 'query' => "magic=all;sortby=$sort" ),
128         '',
129       ];
130   }
131
132   if ( $svcdb eq 'svc_acct' ) {
133     $report_svc{"All $lcname never logged in"} = 
134       [ svc_url( %svc_url, 'query' => "magic=nologin;sortby=svcnum" ),
135         '',
136       ];
137   }
138
139   if ( $curuser->access_right('View/link unlinked services') ) {
140     $report_svc{"Unlinked $lcname"} = 
141       [ svc_url( %svc_url, 'query' => "magic=unlinked;sortby=". $sorts->[0] ),
142         "Pre-Freeside $lcname without a customer record",
143       ];
144   }
145
146   if ( $svcdb eq 'svc_acct' ) {
147     $report_svc{"Advanced $lcsname reports"} = 
148       [ $fsurl."search/report_$svcdb.html", '' ];
149   }
150
151   $report_services{$name} = [ \%report_svc, $longname ];
152
153 }
154
155 tie my %report_packages, 'Tie::IxHash';
156 if ( $curuser->access_right('Configuration') ) {
157   $report_packages{'Package definitions'} =  [ $fsurl.'browse/part_pkg.cgi?active=1', 'Package definitions by number of active packages' ];
158   $report_packages{'separator'} =  '';
159 }
160 if ( $curuser->access_right('Financial reports') ) {
161   $report_packages{'Package churn'} =  [ $fsurl.'graph/report_cust_pkg.html', 'Orders, suspensions and cancellations summary graph' ];
162   $report_packages{'separator2'} =  '';
163 }
164 $report_packages{'All customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?pkgnum', 'List all customer packages', ];
165 $report_packages{'Suspended customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?magic=suspended', 'List suspended packages' ];
166 $report_packages{'Customer packages with unconfigured services'} =  [ $fsurl.'search/cust_pkg.cgi?APKG_pkgnum', 'List packages which have provisionable services' ];
167 $report_packages{'Advanced package reports'} =  [ $fsurl.'search/report_cust_pkg.html', 'by agent, date range, status, package definition' ];
168
169 tie my %report_rating, 'Tie::IxHash',
170   'RADIUS sessions' => [ $fsurl.'search/sqlradius.html', '' ],
171   'Call Detail Records (CDRs)' => [ $fsurl.'search/report_cdr.html', '' ],
172 ;
173
174 tie my %report_bill_event, 'Tie::IxHash',
175   'All billing events' => [ $fsurl.'search/cust_bill_event.html', 'All billing events for a date range' ],
176   'Invoice event errors' => [ $fsurl.'search/cust_bill_event.html?failed=1', 'failed credit cards, processor or printer problems, etc.' ],
177 ;
178
179 tie my %report_financial, 'Tie::IxHash', 
180   'Sales, Credits and Receipts' => [ $fsurl.'graph/report_money_time.html', 'Sales, credits and receipts summary graph' ],
181   'Sales Report' => [ $fsurl.'graph/report_cust_bill_pkg.html', 'Sales report and graph (by agent, package class and/or date range)' ],
182   'Credit Report' => [ $fsurl.'search/report_cust_credit.html', 'Credit report (by employee and/or date range)' ],
183   'Payment Report' => [ $fsurl.'search/report_cust_pay.html', 'Payment report (by type and/or date range)' ],
184 ;
185 $report_financial{'Payment Batch Report'} = [ $fsurl.'search/pay_batch.html', 'Payment batches (by status and/or date range)' ]
186   if $conf->exists('batch-enable') || $conf->config('batch-enable_payby');
187 $report_financial{'A/R Aging'} = [ $fsurl.'search/report_receivables.html', 'Accounts Receivable Aging report' ];
188 $report_financial{'Prepaid Income'} = [ $fsurl.'search/report_prepaid_income.html', 'Prepaid income (unearned revenue)  report' ];
189 $report_financial{'Sales Tax Liability'} = [ $fsurl.'search/report_tax.html', 'Sales tax liability report' ];
190 ;
191
192 tie my %report_menu, 'Tie::IxHash';
193 $report_menu{'Customers'}   = [ \%report_customers, 'Customer reports'  ]
194   if $curuser->access_right('List customers');
195 $report_menu{'Invoices'}    =  [ \%report_invoices,  'Invoice reports'   ]
196   if $curuser->access_right('List invoices');
197 $report_menu{'Packages'}    =  [ \%report_packages,  'Package reports'   ]
198   if $curuser->access_right('List packages');
199 $report_menu{'Services'}    =  [ \%report_services,  'Services reports'  ]
200   if $curuser->access_right('List services');
201 $report_menu{'Usage'} =  [ \%report_rating,    'Usage reports'  ]
202   if $curuser->access_right('List rating data');
203 $report_menu{'Billing events'} =  [ \%report_bill_event, 'Billing events' ]
204   if $curuser->access_right('Billing event reports');
205 $report_menu{'Financial'}  = [ \%report_financial, 'Financial reports' ]
206   if $curuser->access_right('Financial reports');
207 $report_menu{'SQL Query'}  = [ $fsurl.'search/report_sql.html', 'SQL Query' ]
208   if $curuser->access_right('Raw SQL');
209
210 tie my %tools_importing, 'Tie::IxHash',
211   'Import customers' => [ $fsurl.'misc/cust_main-import.cgi', '' ],
212   'Import payments from CSV file' => [ $fsurl.'misc/cust_pay-import.cgi', '' ],
213   'Import customer notes from CSV file' => [ $fsurl.'misc/cust_main_note-import.html', '' ],
214   'Import one-time charges from CSV file' => [ $fsurl.'misc/cust_main-import_charges.cgi', '' ],
215   'Import Call Detail Records (CDRs) from CSV file' => [ $fsurl.'misc/cdr-import.html', '' ],
216 ;
217
218 tie my %tools_exporting, 'Tie::IxHash',
219   'Download database dump' => [ $fsurl. 'misc/dump.cgi', '' ],
220 ;
221
222 #    <!-- <BR>View active NAS ports: 
223 #      <A HREF="browse/nas.cgi">session server</A> -->
224 #      <!-- or <A HREF="browse/nas-sqlradius.cgi">RADIUS</A>
225 #    <BR> -->
226
227 tie my %tools_menu, 'Tie::IxHash', ();
228 $tools_menu{'Quick payment entry'} =  [ $fsurl.'misc/batch-cust_pay.html', 'Enter multiple payments in a batch' ]
229   if $curuser->access_right('Post payment batch');
230 $tools_menu{'Process payment batches'} = [ $fsurl.'search/pay_batch.cgi?magic=_date;open=1;intransit=1', 'Process credit card and electronic check batches' ]
231   if ( $conf->exists('batch-enable') || $conf->config('batch-enable_payby') )
232      && $curuser->access_right('Process batches');
233 $tools_menu{'Job Queue'} =  [ $fsurl.'search/queue.html', 'View pending job queue' ]
234   if $curuser->access_right('Job queue');
235 $tools_menu{'Importing'} =  [ \%tools_importing, 'Import tools' ]
236   if $curuser->access_right('Import');
237 $tools_menu{'Exporting'} =  [ \%tools_exporting, 'Export tools' ]
238   if $curuser->access_right('Export');
239
240 tie my %config_employees, 'Tie::IxHash',
241   'View/Edit employees' => [ $fsurl.'browse/access_user.html', 'Setup internal users' ],
242   'View/Edit employee groups' => [ $fsurl.'browse/access_group.html', 'Employee groups allow you to control access to the backend' ],
243 ;
244
245 tie my %config_export_svc_pkg, 'Tie::IxHash',
246   'View/Edit exports'              => [ $fsurl.'browse/part_export.cgi', 'Provisioning services to external machines, databases and APIs' ],
247   'View/Edit service definitions'  => [ $fsurl.'browse/part_svc.cgi', 'Services are items you offer to your customers' ],
248   'View/Edit 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' ],
249   'View/Edit package classes'      => [ $fsurl.'browse/pkg_class.html', 'Package classes define groups of packages, for reporting and convenience purposes.' ],
250   'View/Edit cancel reason types'  => [ $fsurl.'browse/reason_type.html?class=C', 'Cancel reason types define groups of reasons, for reporting and convenience purposes.' ],
251   'View/Edit cancel reasons'       => [ $fsurl.'browse/reason.html?class=C', 'Cancel reasons explain why a service was cancelled.' ],
252   'View/Edit suspend reason types' => [ $fsurl.'browse/reason_type.html?class=S', 'Suspend reason types define groups of reasons, for reporting and convenience purposes.' ],
253   'View/Edit suspend reasons' => [ $fsurl.'browse/reason.html?class=S', 'Suspend reasons explain why a service was suspended.' ],
254 ;
255
256 tie my %config_agent, 'Tie::IxHash',
257   'View/Edit agent types' => [ $fsurl.'browse/agent_type.cgi', 'Agent types define groups of package definitions that you can then assign to particular agents' ],
258   'View/Edit 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)' ],
259   'View/Edit agent payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors for agent overrides' ];
260 ;
261
262 tie my %config_billing_rates, 'Tie::IxHash',
263   'View/Edit rate plans' => [ $fsurl.'browse/rate.cgi', 'Manage rate plans' ],
264   'View/Edit regions and prefixes' => [ $fsurl.'browse/rate_region.html', 'Manage regions and prefixes' ],
265 ;
266
267 tie my %config_billing, 'Tie::IxHash',
268 #  'View/Edit payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors' ];
269   'View/Edit invoice events'           => [ $fsurl.'browse/part_bill_event.cgi', 'Actions for overdue invoices' ],
270   'View/Edit prepaid cards'            => [ $fsurl.'search/prepay_credit.html', 'View outstanding cards, generate new cards' ],
271   'View/Edit call rates and regions'   => [ \%config_billing_rates, 'Manage rate plans, regions and prefixes for VoIP and call billing' ],
272   'View/Edit locales and tax rates'    => [ $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' ],
273   'View/Edit credit reason types'  => [ $fsurl.'browse/reason_type.html?class=R', 'Credit reason types define groups of reasons, for reporting and convenience purposes.' ],
274   'View/Edit credit reasons'       => [ $fsurl.'browse/reason.html?class=R', 'Credit reasons explain why a credit was issued.' ],
275 ;
276
277 tie my %config_dialup, 'Tie::IxHash',
278   'View/Edit access numbers' => [ $fsurl.'browse/svc_acct_pop.cgi', 'Points of Presence' ],
279 ;
280
281 tie my %config_broadband, 'Tie::IxHash',
282   'View/Edit routers'        => [ $fsurl.'browse/router.cgi', 'Broadband access routers' ],
283   'View/Edit address blocks' => [ $fsurl.'browse/addr_block.cgi', 'Manage address blocks and block assignments to broadband routers' ],
284 ;
285
286 tie my %config_misc, 'Tie::IxHash';
287 $config_misc{'View/Edit advertising sources'} = [ $fsurl.'browse/part_referral.html', 'Where a customer heard about your service.  Tracked for informational purposes' ]
288   if $curuser->access_right('Configuration')
289   || $curuser->access_right('Edit advertising sources')
290   || $curuser->access_right('Edit global advertising sources');
291 if ( $curuser->access_right('Configuration') ) {
292   $config_misc{'View/Edit virtual fields'} = [ $fsurl.'browse/part_virtual_field.cgi', 'Locally defined fields', ];
293   $config_misc{'View/Edit message catalog'} = [ $fsurl.'browse/msgcat.cgi', 'Change error messages and other customizable labels' ];
294   $config_misc{'View/Edit inventory classes and inventory'} = [ $fsurl.'browse/inventory_class.html', 'Setup inventory classes and stock inventory' ];
295 }
296
297 tie my %config_menu, 'Tie::IxHash';
298 if ( $curuser->access_right('Configuration' ) ) {
299   %config_menu = (
300     'Settings'      => [ $fsurl.'config/config-view.cgi', '' ],
301     'separator'     => '', #its a separator!
302     'Employees'     => [ \%config_employees, '' ],
303     'Provisioning, services and packages'
304                     => [ \%config_export_svc_pkg, ''    ],
305     'Resellers'     => [ \%config_agent, ''    ],
306     'Billing'       => [ \%config_billing, ''    ],
307     'Dialup'        => [ \%config_dialup, ''    ],
308     'Fixed (username-less) broadband'
309                     => [ \%config_broadband, ''    ],
310   );
311 }
312 $config_menu{'Miscellaneous'} = [ \%config_misc, ''    ]
313   if $curuser->access_right('Configuration')
314   || $curuser->access_right('Edit advertising sources')
315   || $curuser->access_right('Edit global advertising sources');
316
317 tie my %menu, 'Tie::IxHash',
318   'Billing Main'   => [ $fsurl, 'Billing start page', ],
319 ;
320 if ( $conf->config('ticket_system') ) {
321   $menu{'Ticketing Main'} =
322     [ 
323       ( $conf->config('ticket_system') eq 'RT_External'
324         ? FS::TicketSystem->baseurl()
325         : $fsurl.'rt/'
326       ),
327       'Ticketing start page',
328     ],
329 }
330 $menu{'Reports'} = [ \%report_menu, 'Lists, reporting and graphing' ]
331   if keys %report_menu;
332 $menu{'Tools'} = [ \%tools_menu, 'Tools' ]
333   if keys %tools_menu;
334 $menu{'Configuration'} = [ \%config_menu, 'Configuraiton and setup' ]
335   if $curuser->access_right('Configuration')
336   || $curuser->access_right('Edit advertising sources')
337   || $curuser->access_right('Edit global advertising sources');
338
339 use vars qw($gmenunum);
340 $gmenunum = 0;
341
342 sub submenu {
343   my($submenu, $title) = @_;
344   my $menunum = $gmenunum++;
345
346   #return two args: html, menuname
347
348   "var myMenu$menunum = new WebFXMenu;\n".
349   #"myMenu$menunum.useAutoPosition = true;\n".
350   "myMenu$menunum.emptyText = '$title';\n".
351
352   (
353     join("\n", map {
354
355       if ( !ref( $submenu->{$_} ) ) {
356
357         "myMenu$menunum.add(new WebFXMenuSeparator());";
358
359       } else {
360
361         my($url_or_submenu, $tooltip ) = @{ $submenu->{$_} };
362         if ( ref($url_or_submenu) ) {
363
364           my($subhtml, $submenuname ) = submenu($url_or_submenu, $_); #mmm, recursion
365
366           "$subhtml\n".
367           "myMenu$menunum.add(new WebFXMenuItem(\"$_\", null, \"$tooltip\", $submenuname ));";
368
369         } else {
370
371           "myMenu$menunum.add(new WebFXMenuItem(\"$_\", \"$url_or_submenu\", \"$tooltip\" ));";
372
373         }
374
375       }
376
377     } keys %$submenu )
378   ). "\n".
379   "myMenu$menunum.width = 280;\n",
380
381   "myMenu$menunum";
382
383 }
384
385 </%init>
386