7ee34a9770e20124557740218d10133ed622781e
[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   'List customers' => [ \%report_customers_lists, 'List customers' ],
75 ;
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
80 tie my %report_invoices_open, 'Tie::IxHash',
81   'All open invoices' => [ $fsurl.'search/cust_bill.html?OPEN_date', 'All invoices with an unpaid balance' ],
82   '15 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN15_date', 'Invoices 15 days or older with an unpaid balance' ],
83   '30 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN30_date', 'Invoices 30 days or older with an unpaid balance' ],
84   '60 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN60_date', 'Invoices 60 days or older with an unpaid balance' ],
85   '90 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN90_date', 'Invoices 90 days or older with an unpaid balance' ],
86   '120 day open invoices' => [ $fsurl.'search/cust_bill.html?OPEN120_date', 'Invoices 120 days or older with an unpaid balance' ],
87 ;
88
89 tie my %report_invoices, 'Tie::IxHash',
90   'Open invoices' => [ \%report_invoices_open, 'Open invoices' ],
91   'All invoices'  => [ $fsurl. 'search/cust_bill.html?date', 'List all invoices' ],
92   'Advanced invoice reports' => [ $fsurl.'search/report_cust_bill.html', 'by agent, date range, etc.' ],
93 ;
94
95 tie my %report_services, 'Tie::IxHash';
96 if ( $curuser->access_right('Configuration') ) {
97   $report_services{'Service definitions'} =  [ $fsurl.'browse/part_svc.cgi?orderby=active', 'Service definitions by number of active packages' ];
98   $report_services{'separator'} =  '';
99 }
100 foreach my $svcdb ( FS::part_svc->svc_tables() ) {
101
102   my $name =        "FS::$svcdb"->table_info->{'name_plural'}
103              || PL( "FS::$svcdb"->table_info->{'name'}        );
104   my $lcname = lc($name);
105   my $longname = "FS::$svcdb"->table_info->{'longname_plural'} || $name;
106   my $lclongname = lc($longname);
107   my $sorts = "FS::$svcdb"->table_info->{'sorts'} || [ 'svcnum' ];
108   $sorts = [ $sorts ] unless ref($sorts);
109   my %svc_url = ( 'm'      => $m,
110                   'action' => 'search',
111                   'svcdb'  => $svcdb,
112                 );
113
114   tie my %report_svc, 'Tie::IxHash';
115
116   foreach my $sort ( @$sorts ) {
117
118     my $title = "All $lcname";
119     $title .= " by ". FS::part_svc->svc_table_fields($svcdb)->{$sort}->{'label'}
120       if scalar(@$sorts) > 1;
121
122     $report_svc{$title} =
123       [ svc_url( %svc_url, 'query' => "magic=all;sortby=$sort" ),
124         '',
125       ];
126   }
127
128   if ( $curuser->access_right('View/link unlinked services') ) {
129     $report_svc{"Unlinked $lcname"} = 
130       [ svc_url( %svc_url, 'query' => "magic=unlinked;sortby=". $sorts->[0] ),
131         "Pre-Freeside $lcname without a customer record",
132       ];
133   }
134
135   $report_services{$name} = [ \%report_svc, $longname ];
136
137 }
138
139 tie my %report_packages, 'Tie::IxHash';
140 if ( $curuser->access_right('Configuration') ) {
141   $report_packages{'Package definitions'} =  [ $fsurl.'browse/part_pkg.cgi?active=1', 'Package definitions by number of active packages' ];
142   $report_packages{'separator'} =  '';
143 }
144 $report_packages{'All customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?pkgnum', 'List all customer packages', ];
145 $report_packages{'Suspended customer packages'} =  [ $fsurl.'search/cust_pkg.cgi?magic=suspended', 'List suspended packages' ];
146 $report_packages{'Customer packages with unconfigured services'} =  [ $fsurl.'search/cust_pkg.cgi?APKG_pkgnum', 'List packages which have provisionable services' ];
147 $report_packages{'Advanced package reports'} =  [ $fsurl.'search/report_cust_pkg.html', 'by agent, date range, status, package definition' ];
148
149 tie my %report_rating, 'Tie::IxHash',
150   'RADIUS sessions' => [ $fsurl.'search/sqlradius.html', '' ],
151   'Call Detail Records (CDRs)' => [ $fsurl.'search/report_cdr.html', '' ],
152 ;
153
154 tie my %report_bill_event, 'Tie::IxHash',
155   'All billing events' => [ $fsurl.'search/cust_bill_event.html', 'All billing events for a date range' ],
156   'Invoice event errors' => [ $fsurl.'search/cust_bill_event.html?failed=1', 'failed credit cards, processor or printer problems, etc.' ],
157 ;
158
159 tie my %report_financial, 'Tie::IxHash', 
160   'Sales, Credits and Receipts' => [ $fsurl.'graph/report_money_time.html', 'Sales, credits and receipts summary graph' ],
161   'Sales Report' => [ $fsurl.'graph/report_cust_bill_pkg.html', 'Sales report and graph (by agent, package class and/or date range)' ],
162   'Credit Report' => [ $fsurl.'search/report_cust_credit.html', 'Credit report (by employee and/or date range)' ],
163   'Payment Report' => [ $fsurl.'search/report_cust_pay.html', 'Payment report (by type and/or date range)' ],
164 ;
165 $report_financial{'Payment Batch Report'} = [ $fsurl.'search/pay_batch.html', 'Payment batches (by status and/or date range)' ]
166   if $conf->exists('batch-enable');
167 $report_financial{'A/R Aging'} = [ $fsurl.'search/report_receivables.html', 'Accounts Receivable Aging report' ];
168 $report_financial{'Prepaid Income'} = [ $fsurl.'search/report_prepaid_income.html', 'Prepaid income (unearned revenue)  report' ];
169 $report_financial{'Sales Tax Liability'} = [ $fsurl.'search/report_tax.html', 'Sales tax liability report' ];
170 ;
171
172 tie my %report_menu, 'Tie::IxHash';
173 $report_menu{'Customers'}   = [ \%report_customers, 'Customer reports'  ]
174   if $curuser->access_right('List customers');
175 $report_menu{'Invoices'}    =  [ \%report_invoices,  'Invoice reports'   ]
176   if $curuser->access_right('List invoices');
177 $report_menu{'Packages'}    =  [ \%report_packages,  'Package reports'   ]
178   if $curuser->access_right('List packages');
179 $report_menu{'Services'}    =  [ \%report_services,  'Services reports'  ]
180   if $curuser->access_right('List services');
181 $report_menu{'Usage'} =  [ \%report_rating,    'Usage reports'  ]
182   if $curuser->access_right('List rating data');
183 $report_menu{'Billing events'} =  [ \%report_bill_event, 'Billing events' ]
184   if $curuser->access_right('Billing event reports');
185 $report_menu{'Financial'}  = [ \%report_financial, 'Financial reports' ]
186   if $curuser->access_right('Financial reports');
187
188 tie my %tools_importing, 'Tie::IxHash',
189   'Import customers from CSV file' => [ $fsurl.'misc/cust_main-import.cgi', '' ],
190   'Import customer comments from CSV file' => [ $fsurl.'misc/cust_main_note-import.html', '' ],
191   'Import one-time charges from CSV file' => [ $fsurl.'misc/cust_main-import_charges.cgi', '' ],
192   'Import Call Detail Records (CDRs) from CSV file' => [ $fsurl.'misc/cdr-import.html', '' ],
193 ;
194
195 tie my %tools_exporting, 'Tie::IxHash',
196   'Download database dump' => [ $fsurl. 'misc/dump.cgi', '' ],
197 ;
198
199 #    <!-- <BR>View active NAS ports: 
200 #      <A HREF="browse/nas.cgi">session server</A> -->
201 #      <!-- or <A HREF="browse/nas-sqlradius.cgi">RADIUS</A>
202 #    <BR> -->
203
204 tie my %tools_menu, 'Tie::IxHash', ();
205 $tools_menu{'Quick payment entry'} =  [ $fsurl.'misc/batch-cust_pay.html', 'Enter multiple payments in a batch' ]
206   if $curuser->access_right('Post payment batch');
207 $tools_menu{'Process payment batches'} = [ $fsurl.'search/pay_batch.cgi?magic=_date;open=1;intransit=1', 'Process credit card and electronic check batches' ]
208   if $conf->exists('batch-enable') && $curuser->access_right('Process batches');
209 $tools_menu{'Job Queue'} =  [ $fsurl.'search/queue.html', 'View pending job queue' ]
210   if $curuser->access_right('Job queue');
211 $tools_menu{'Importing'} =  [ \%tools_importing, 'Import tools' ]
212   if $curuser->access_right('Import');
213 $tools_menu{'Exporting'} =  [ \%tools_exporting, 'Export tools' ]
214   if $curuser->access_right('Export');
215
216 tie my %config_employees, 'Tie::IxHash',
217   'View/Edit employees' => [ $fsurl.'browse/access_user.html', 'Setup internal users' ],
218   'View/Edit employee groups' => [ $fsurl.'browse/access_group.html', 'Employee groups allow you to control access to the backend' ],
219 ;
220
221 tie my %config_export_svc_pkg, 'Tie::IxHash',
222   'View/Edit exports'              => [ $fsurl.'browse/part_export.cgi', 'Provisioning services to external machines, databases and APIs' ],
223   'View/Edit service definitions'  => [ $fsurl.'browse/part_svc.cgi', 'Services are items you offer to your customers' ],
224   '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' ],
225   'View/Edit package classes'      => [ $fsurl.'browse/pkg_class.html', 'Package classes define groups of packages, for reporting and convenience purposes.' ],
226   'View/Edit cancel reason types'  => [ $fsurl.'browse/reason_type.html?class=C', 'Cancel reason types define groups of reasons, for reporting and convenience purposes.' ],
227   'View/Edit cancel reasons'       => [ $fsurl.'browse/reason.html?class=C', 'Cancel reasons explain why a service was cancelled.' ],
228   'View/Edit suspend reason types' => [ $fsurl.'browse/reason_type.html?class=S', 'Suspend reason types define groups of reasons, for reporting and convenience purposes.' ],
229   'View/Edit suspend reasons' => [ $fsurl.'browse/reason.html?class=S', 'Suspend reasons explain why a service was suspended.' ],
230 ;
231
232 tie my %config_agent, 'Tie::IxHash',
233   'View/Edit agent types' => [ $fsurl.'browse/agent_type.cgi', 'Agent types define groups of package definitions that you can then assign to particular agents' ],
234   '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)' ],
235 ;
236
237 tie my %config_billing, 'Tie::IxHash',
238   'View/Edit payment gateways'         => [ $fsurl.'browse/payment_gateway.html', 'Credit card and electronic check processors' ],
239   'View/Edit invoice events'           => [ $fsurl.'browse/part_bill_event.cgi', 'Actions for overdue invoices' ],
240   'View/Edit prepaid cards'            => [ $fsurl.'search/prepay_credit.html', 'View outstanding cards, generate new cards' ],
241   'View/Edit call rates and regions'   => [ $fsurl.'browse/rate.cgi', 'Manage rate plans, regions and prefixes for VoIP and call billing' ],
242   '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' ],
243 ;
244
245 tie my %config_dialup, 'Tie::IxHash',
246   'View/Edit access numbers' => [ $fsurl.'browse/svc_acct_pop.cgi', 'Points of Presence' ],
247 ;
248
249 tie my %config_broadband, 'Tie::IxHash',
250   'View/Edit routers'        => [ $fsurl.'browse/router.cgi', 'Broadband access routers' ],
251   'View/Edit address blocks' => [ $fsurl.'browse/addr_block.cgi', 'Manage address blocks and block assignments to broadband routers' ],
252 ;
253
254 tie my %config_misc, 'Tie::IxHash';
255 $config_misc{'View/Edit advertising sources'} = [ $fsurl.'browse/part_referral.html', 'Where a customer heard about your service.  Tracked for informational purposes' ]
256   if $curuser->access_right('Configuration')
257   || $curuser->access_right('Edit advertising sources')
258   || $curuser->access_right('Edit global advertising sources');
259 if ( $curuser->access_right('Configuration') ) {
260   $config_misc{'View/Edit virtual fields'} = [ $fsurl.'browse/part_virtual_field.cgi', 'Locally defined fields', ];
261   $config_misc{'View/Edit message catalog'} = [ $fsurl.'browse/msgcat.cgi', 'Change error messages and other customizable labels' ];
262   $config_misc{'View/Edit inventory classes and inventory'} = [ $fsurl.'browse/inventory_class.html', 'Setup inventory classes and stock inventory' ];
263 }
264
265 tie my %config_menu, 'Tie::IxHash';
266 if ( $curuser->access_right('Configuration' ) ) {
267   %config_menu = (
268     'Settings'      => [ $fsurl.'config/config-view.cgi', '' ],
269     'separator'     => '', #its a separator!
270     'Employees'     => [ \%config_employees, '' ],
271     'Provisioning, services and packages'
272                     => [ \%config_export_svc_pkg, ''    ],
273     'Resellers'     => [ \%config_agent, ''    ],
274     'Billing'       => [ \%config_billing, ''    ],
275     'Dialup'        => [ \%config_dialup, ''    ],
276     'Fixed (username-less) broadband'
277                     => [ \%config_broadband, ''    ],
278   );
279 }
280 $config_menu{'Miscellaneous'} = [ \%config_misc, ''    ]
281   if $curuser->access_right('Configuration')
282   || $curuser->access_right('Edit advertising sources')
283   || $curuser->access_right('Edit global advertising sources');
284
285 tie my %menu, 'Tie::IxHash',
286   'Billing Main'   => [ $fsurl, 'Billing start page', ],
287 ;
288 if ( $conf->config('ticket_system') ) {
289   $menu{'Ticketing Main'} =
290     [ 
291       ( $conf->config('ticket_system') eq 'RT_External'
292         ? FS::TicketSystem->baseurl()
293         : $fsurl.'rt/'
294       ),
295       'Ticketing start page',
296     ],
297 }
298 $menu{'Reports'} = [ \%report_menu, 'Lists, reporting and graphing' ]
299   if keys %report_menu;
300 $menu{'Tools'} = [ \%tools_menu, 'Tools' ]
301   if keys %tools_menu;
302 $menu{'Configuration'} = [ \%config_menu, 'Configuraiton and setup' ]
303   if $curuser->access_right('Configuration')
304   || $curuser->access_right('Edit advertising sources')
305   || $curuser->access_right('Edit global advertising sources');
306
307 use vars qw($gmenunum);
308 $gmenunum = 0;
309
310 sub submenu {
311   my($submenu, $title) = @_;
312   my $menunum = $gmenunum++;
313
314   #return two args: html, menuname
315
316   "var myMenu$menunum = new WebFXMenu;\n".
317   #"myMenu$menunum.useAutoPosition = true;\n".
318   "myMenu$menunum.emptyText = '$title';\n".
319
320   (
321     join("\n", map {
322
323       if ( !ref( $submenu->{$_} ) ) {
324
325         "myMenu$menunum.add(new WebFXMenuSeparator());";
326
327       } else {
328
329         my($url_or_submenu, $tooltip ) = @{ $submenu->{$_} };
330         if ( ref($url_or_submenu) ) {
331
332           my($subhtml, $submenuname ) = submenu($url_or_submenu, $_); #mmm, recursion
333
334           "$subhtml\n".
335           "myMenu$menunum.add(new WebFXMenuItem(\"$_\", null, \"$tooltip\", $submenuname ));";
336
337         } else {
338
339           "myMenu$menunum.add(new WebFXMenuItem(\"$_\", \"$url_or_submenu\", \"$tooltip\" ));";
340
341         }
342
343       }
344
345     } keys %$submenu )
346   ). "\n".
347   "myMenu$menunum.width = 280;\n",
348
349   "myMenu$menunum";
350
351 }
352
353 </%init>
354