Will things ever be the same again?
[freeside.git] / httemplate / view / cust_main / packages.html
1 %
2 %  my( $cust_main ) = @_;
3 %  my $conf = new FS::Conf;
4 %
5 %  my $curuser = $FS::CurrentUser::CurrentUser;
6 %
7 %  my $packages = get_packages($cust_main, $conf);
8 %
9
10
11 <A NAME="cust_pkg"><FONT SIZE="+2">Packages</FONT></A>
12 % if ( $curuser->access_right('Order customer package') ) { 
13
14   <% include('order_pkg.html', $cust_main ) %>
15 % } 
16 % if ( $curuser->access_right('One-time charge')
17 %        && $conf->config('payby-default') ne 'HIDE'
18 %      ) {
19 %
20
21   <% include('quick-charge.html', $cust_main ) %>
22 % } 
23 % if ( $curuser->access_right('Bulk change customer packages') ) { 
24
25   <A HREF="<% $p %>edit/cust_pkg.cgi?<% $cust_main->custnum %>">Bulk order and cancel packages</A> (preserves services)
26 % } 
27
28
29 <BR><BR>
30 % if ( @$packages ) { 
31
32 Current packages
33 % } 
34 % if ( $cust_main->num_cancelled_pkgs ) {
35 %     if ( $cgi->param('showcancelledpackages') eq '0' #see if it was set by me
36 %          || ( $conf->exists('hidecancelledpackages')
37 %               && ! $cgi->param('showcancelledpackages')
38 %             )
39 %        )
40 %     {
41 %       $cgi->param('showcancelledpackages', 1);
42 %
43
44   ( <a href="<% $cgi->self_url %>">show
45 %   } else {
46 %       $cgi->param('showcancelledpackages', 0);
47 %
48
49   ( <a href="<% $cgi->self_url %>">hide
50 %   } 
51
52  cancelled packages</a> )
53 % } 
54 % if ( @$packages ) { 
55
56
57 <% include('/elements/table-grid.html') %>
58 % my $bgcolor1 = '#eeeeee';
59 %   my $bgcolor2 = '#ffffff';
60 %   my $bgcolor = '';
61 %
62
63
64 <TR>
65   <TH CLASS="grid" BGCOLOR="#cccccc">Package</TH>
66   <TH CLASS="grid" BGCOLOR="#cccccc">Status</TH>
67   <TH CLASS="grid" BGCOLOR="#cccccc">Services</TH>
68 </TR>
69 %
70 %foreach my $pkg (sort pkgsort_pkgnum_cancel @$packages) {
71 %
72 %  if ( $bgcolor eq $bgcolor1 ) {
73 %    $bgcolor = $bgcolor2;
74 %  } else {
75 %    $bgcolor = $bgcolor1;
76 %  }
77 %
78 %
79
80
81 <!--pkgnum: <%$pkg->{pkgnum}%>-->
82 <TR>
83   <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
84     <A NAME="cust_pkg<%$pkg->{pkgnum}%>"><%$pkg->{pkgnum}%></A>:
85     <%$pkg->{pkg}%> - <%$pkg->{comment}%><BR>
86     <FONT SIZE=-1>
87 % unless ( $pkg->{cancel} ) { 
88 % if ( $curuser->access_right('Change customer package') ) { 
89
90             (&nbsp;<%pkg_change_link($pkg)%>&nbsp;)
91 % } 
92 % if ( $curuser->access_right('Edit customer package dates') ) { 
93
94             (&nbsp;<%pkg_dates_link($pkg)%>&nbsp;)
95 % } 
96 % if ( $curuser->access_right('Customize customer package') ) { 
97
98             (&nbsp;<%pkg_customize_link($pkg,$cust_main->custnum)%>&nbsp;)
99 % } 
100 % } 
101
102     </FONT>
103   </TD>
104   <TD CLASS="inv" BGCOLOR="<% $bgcolor %>">
105     <TABLE CLASS="inv" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
106 %
107 %  sub myfreq {
108 %    my $part_pkg = shift;
109 %    my $freq = $part_pkg->freq_pretty;
110 %    $freq =~ s/ /&nbsp;/g;
111 %    $freq;
112 %  }
113 %
114 %  #this should use cust_pkg->status and cust_pkg->statuscolor eventually
115 %
116 %  my $colspan = $conf->exists('cust_pkg-display_times') ? 8 : 4;
117 %  my $width = $conf->exists('cust_pkg-display_times') ? '38%' : '56%';
118 %
119 %  #false laziness w/edit/REAL_cust_pkg.cgi
120 %  my( $billed_or_prepaid, $last_bill_or_renewed, $next_bill_or_prepaid_until );
121 %  unless ( $pkg->{'part_pkg'}->is_prepaid ) {
122 %    $billed_or_prepaid = 'billed';
123 %    $last_bill_or_renewed = 'Last&nbsp;bill';
124 %    $next_bill_or_prepaid_until = 'Next&nbsp;bill';
125 %  } else {
126 %    $billed_or_prepaid = 'prepaid';
127 %    $last_bill_or_renewed = 'Renewed';
128 %    $next_bill_or_prepaid_until = 'Prepaid&nbsp;until';
129 %  }
130 %
131 %
132 % if ( $pkg->{cancel} ) { 
133  <!-- #status: cancelled -->
134
135   <TR>
136     <TD WIDTH="<%$width%>" ALIGN="right"><FONT COLOR="#ff0000"><B>Cancelled&nbsp;</B></FONT></TD>
137     <% pkg_datestr($pkg,'cancel',$conf) %>
138   </TR>
139 % unless ( $pkg->{setup} ) { 
140
141
142     <TR>
143       <TD COLSPAN=<%$colspan%>>Never billed</TD>
144     </TR>
145 % } else { 
146
147
148     <TR>
149       <TD WIDTH="<%$width%>" ALIGN="right">Setup&nbsp;</TD>
150       <% pkg_datestr($pkg, 'setup',$conf) %>
151     </TR>
152 % if ( $pkg->{'last_bill'} ) { 
153
154       <TR>
155         <TD WIDTH="<%$width%>" ALIGN="right"><% $last_bill_or_renewed %>&nbsp;</TD>
156         <% pkg_datestr($pkg, 'last_bill',$conf) %>
157       </TR>
158 % } 
159 % if ( $pkg->{'susp'} ) { 
160
161       <TR>
162         <TD WIDTH="<%$width%>" ALIGN="right">Suspended&nbsp;</TD>
163         <% pkg_datestr($pkg, 'susp',$conf) %>
164       </TR>
165 % } 
166 % } 
167 % } else { 
168 % if ( $pkg->{susp} ) { 
169  <!-- #status: suspended -->
170
171     <TR>
172       <TD WIDTH="<%$width%>" ALIGN="right"><FONT COLOR="#FF9900"><B>Suspended</B>&nbsp;</FONT></TD>
173       <% pkg_datestr($pkg,'susp',$conf) %>
174     </TR>
175 % unless ( $pkg->{setup} ) { 
176
177
178       <TR>
179         <TD COLSPAN=<%$colspan%>>Never billed</TD>
180       </TR>
181 % } else { 
182
183
184       <TR>
185         <TD WIDTH="<%$width%>" ALIGN="right">Setup&nbsp;</TD>
186         <% pkg_datestr($pkg, 'setup',$conf) %>
187       </TR>
188 % } 
189 % if ( $pkg->{'last_bill'} ) { 
190
191       <TR>
192         <TD WIDTH="<%$width%>" ALIGN="right"><% $last_bill_or_renewed %>&nbsp;</TD>
193         <% pkg_datestr($pkg, 'last_bill',$conf) %>
194       </TR>
195 % } 
196
197
198     <!-- # next bill ?? -->
199 % if ( $pkg->{'expire'} ) { 
200
201       <TR>
202         <TD WIDTH="<%$width%>" ALIGN="right">Expires&nbsp;</TD>
203         <% pkg_datestr($pkg, 'expire',$conf) %>
204       </TR>
205 % } 
206
207
208     <TR>
209       <TD COLSPAN=<%$colspan%>>
210         <FONT SIZE=-1>
211 % if ( $curuser->access_right('Unsuspend customer package') ) { 
212
213             (&nbsp;<% pkg_unsuspend_link($pkg) %>&nbsp;)
214 % } 
215 % if ( $curuser->access_right('Cancel customer package') ) { 
216
217             (&nbsp;<% pkg_cancel_link($pkg) %>&nbsp;)
218 % } 
219
220         </FONT>
221       </TD>
222     </TR>
223 % } else { 
224  <!-- #status: active -->
225 % unless ( $pkg->{setup} ) { 
226  <!-- #not setup -->
227 % unless ( $pkg->{'freq'} ) { 
228
229
230         <TR>
231           <TD COLSPAN=<%$colspan%>>Not&nbsp;yet&nbsp;billed&nbsp;(one-time&nbsp;charge)</TD>
232         </TR>
233
234         <TR>
235           <TD COLSPAN=<%$colspan%>>
236             <FONT SIZE=-1>
237 % if ( $curuser->access_right('Cancel customer package immediately') ) { 
238
239                 (&nbsp;<% pkg_cancel_link($pkg) %>&nbsp;)
240 % } 
241
242             </FONT>
243           </TD>
244         </TR>
245 % } else { 
246
247
248         <TR>
249           <TD COLSPAN=<%$colspan%>>Not&nbsp;yet&nbsp;billed&nbsp;(<% $billed_or_prepaid %>&nbsp;<% myfreq($pkg->{part_pkg}) %>)</TD>
250         </TR>
251 % } 
252 % } else { 
253  <!-- #setup -->
254 % unless ( $pkg->{freq} ) { 
255
256
257         <TR>
258           <TD COLSPAN=<%$colspan%>>One-time&nbsp;charge</TD>
259         </TR>
260
261         <TR>
262           <TD WIDTH="<%$width%>" ALIGN="right">Billed&nbsp;</TD>
263           <% pkg_datestr($pkg,'setup',$conf) %>
264         </TR>
265 % } else { 
266
267
268         <TR>
269           <TD COLSPAN=<%$colspan%>><FONT COLOR="#00CC00"><B>Active</B></FONT>,&nbsp;<% $billed_or_prepaid %>&nbsp;<% myfreq($pkg->{part_pkg}) %></TD>
270         </TR>
271
272         <TR>
273           <TD WIDTH="<%$width%>" ALIGN="right">Setup&nbsp;</TD>
274           <% pkg_datestr($pkg, 'setup',$conf) %>
275         </TR>
276 % } 
277 % } 
278 % if ( $pkg->{'last_bill'} ) { 
279
280       <TR>
281         <TD WIDTH="<%$width%>" ALIGN="right"><% $last_bill_or_renewed %>&nbsp;</TD>
282         <% pkg_datestr($pkg, 'last_bill',$conf) %>
283       </TR>
284 % } 
285 % if ( $pkg->{'next_bill'} ) { 
286
287       <TR>
288         <TD WIDTH="<%$width%>" ALIGN="right"><% $next_bill_or_prepaid_until %>&nbsp;</TD>
289         <% pkg_datestr($pkg, 'next_bill',$conf) %>
290       </TR>
291 % } 
292 % if ( $pkg->{'expire'} ) { 
293
294       <TR>
295         <TD WIDTH="<%$width%>" ALIGN="right">Expires&nbsp;</TD>
296         <% pkg_datestr($pkg, 'expire',$conf) %>
297       </TR>
298 % } 
299 % if ( $pkg->{freq} ) { 
300
301       <TR>
302         <TD COLSPAN=<%$colspan%>>
303           <FONT SIZE=-1>
304 % if ( $curuser->access_right('Suspend customer package') ) { 
305
306               (&nbsp;<% pkg_suspend_link($pkg) %>&nbsp;)
307 % } 
308 % if ( $curuser->access_right('Cancel customer package immediately') ) { 
309
310               (&nbsp;<% pkg_cancel_link($pkg) %>&nbsp;)
311 % } 
312 % if ( $curuser->access_right('Cancel customer package later') ) { 
313
314               (&nbsp;<% pkg_expire_link($pkg) %>&nbsp;)
315 % } 
316
317           <FONT>
318         </TD>
319       </TR>
320 % } 
321 % } 
322 % } 
323
324
325 </TABLE>
326 </TD>
327
328 <TD CLASS="inv" BGCOLOR="<% $bgcolor %>">
329   <TABLE CLASS="inv" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
330 %
331 %  foreach my $svcpart (sort {$a->{svcpart} <=> $b->{svcpart}} @{$pkg->{svcparts}}) {
332 %    foreach my $service (@{$svcpart->{services}}) {
333 %
334
335       <TR>
336         <TD ALIGN="right" VALIGN="top" ROWSPAN=2><%svc_link($svcpart,$service)%></TD>
337         <TD STYLE="padding-bottom:0px"><B><%svc_label_link($svcpart,$service)%></B></TD>
338       </TR>
339 % if ( $curuser->access_right('Unprovision customer service') ) { 
340
341         <TR>
342           <TD ALIGN="right" VALIGN="top" STYLE="padding-bottom:5px;padding-top:0px"><FONT SIZE="-2">(&nbsp;<%svc_unprovision_link($service)%>&nbsp;)</FONT></TD>
343         </TR>
344 % } 
345 % } 
346 % if ( $curuser->access_right('Provision customer service') 
347 %            && $svcpart->{count} < $svcpart->{quantity}
348 %          )
349 %       {
350 %    
351
352
353       <TR>
354         <TD COLSPAN=2 ALIGN="center" STYLE="padding-bottom:4px;padding-top:0px">
355           <B><% svc_provision_link($pkg, $svcpart, $conf, $curuser) %></B>
356         </TD>
357       </TR>
358 % } 
359 % } 
360
361
362 </TABLE>
363 </TD>
364 % } #end display packages
365 %
366
367
368 </TABLE>
369 % } else { 
370
371 <BR>
372 % } 
373 %
374 %#subroutines
375 %
376 %sub get_packages {
377 %  my $cust_main = shift or return undef;
378 %  my $conf = shift;
379 %  
380 %  my @packages = ();
381 %  my $method;
382 %  if (  $cgi->param('showcancelledpackages') eq '0' #see if it was set by me
383 %     || ( $conf->exists('hidecancelledpackages')
384 %           && ! $cgi->param('showcancelledpackages') )
385 %     )
386 %  {
387 %    $method = 'ncancelled_pkgs';
388 %  } else {
389 %    $method = 'all_pkgs';
390 %  }
391 %  
392 %  foreach my $cust_pkg ( $cust_main->$method() ) {
393 %  
394 %    my $part_pkg = $cust_pkg->part_pkg;
395 %
396 %    my %pkg = ();
397 %
398 %    #to get back to the original object... should use it in the first place!!
399 %    $pkg{cust_pkg} = $cust_pkg;
400 %    $pkg{part_pkg} = $part_pkg;
401 %
402 %    $pkg{pkgnum} = $cust_pkg->pkgnum;
403 %    $pkg{pkg} = $part_pkg->pkg;
404 %    $pkg{pkgpart} = $part_pkg->pkgpart;
405 %    $pkg{comment} = $part_pkg->getfield('comment');
406 %    $pkg{freq} = $part_pkg->freq;
407 %    $pkg{setup} = $cust_pkg->getfield('setup');
408 %    $pkg{last_bill} = $cust_pkg->getfield('last_bill');
409 %    $pkg{next_bill} = $cust_pkg->getfield('bill');
410 %    $pkg{susp} = $cust_pkg->getfield('susp');
411 %    $pkg{expire} = $cust_pkg->getfield('expire');
412 %    $pkg{cancel} = $cust_pkg->getfield('cancel');
413 %
414 %  
415 %    my %svcparts = map {
416 %      $_->svcpart => {
417 %                       $_->part_svc->hash,
418 %                       'quantity' => $_->quantity,
419 %                       'count'    => $cust_pkg->num_cust_svc($_->svcpart),
420 %                       #'services' => [],
421 %                     };
422 %    } $part_pkg->pkg_svc;
423 %
424 %    foreach my $cust_svc ( $cust_pkg->cust_svc ) {
425 %      #warn "svcnum ". $cust_svc->svcnum. " / svcpart ". $cust_svc->svcpart. "\n";
426 %      my $svc = {
427 %        'svcnum' => $cust_svc->svcnum,
428 %        'label'  => ($cust_svc->label)[1],
429 %      };
430 %
431 %      #false laziness with above, to catch extraneous services.  whole
432 %      #damn thing should be OO...
433 %      my $svcpart = ( $svcparts{$cust_svc->svcpart} ||= {
434 %        $cust_svc->part_svc->hash,
435 %        'quantity' => 0,
436 %        'count'    => $cust_pkg->num_cust_svc($cust_svc->svcpart),
437 %        #'services' => [],
438 %      } );
439 %
440 %      push @{$svcpart->{services}}, $svc;
441 %
442 %    }
443 %
444 %    $pkg{svcparts} = [ values %svcparts ];
445 %
446 %    push @packages, \%pkg;
447 %  
448 %  }
449 %  
450 %  return \@packages;
451 %
452 %}
453 %
454 %sub svc_link {
455 %
456 %  my ($svcpart, $svc) = (shift,shift) or return '';
457 %  return qq!<A HREF="${p}view/$svcpart->{svcdb}.cgi?$svc->{svcnum}">$svcpart->{svc}</A>!;
458 %
459 %}
460 %
461 %sub svc_label_link {
462 %
463 %  my ($svcpart, $svc) = (shift,shift) or return '';
464 %  return qq!<A HREF="${p}view/$svcpart->{svcdb}.cgi?$svc->{svcnum}">$svc->{label}</A>!;
465 %
466 %}
467 %
468 %sub svc_provision_link {
469 %  my ($pkg, $svcpart, $conf, $curuser) = @_;
470 %  ( my $svc_nbsp = $svcpart->{svc} ) =~ s/\s+/&nbsp;/g;
471 %  my $num_left = $svcpart->{quantity} - $svcpart->{count};
472 %  my $pkgnum_svcpart = "pkgnum$pkg->{pkgnum}-svcpart$svcpart->{svcpart}";
473 %
474 %  my $url;
475 %  if ( $svcpart->{svcdb} eq 'svc_external'
476 %       && $conf->exists('svc_external-skip_manual')
477 %  ) {
478 %    $url = "${p}edit/process/$svcpart->{svcdb}.cgi?".
479 %           "pkgnum=$pkg->{pkgnum}&".
480 %           "svcpart=$svcpart->{svcpart}";
481 %  } else {
482 %    $url = "${p}edit/$svcpart->{svcdb}.cgi?$pkgnum_svcpart";
483 %  }
484 %
485 %  my $link = qq!<A CLASS="provision" HREF="$url">!.
486 %             "Provision&nbsp;$svc_nbsp&nbsp;($num_left)</A>";
487 %  if ( $conf->exists('legacy_link')
488 %       && $curuser->access_right('View/link unlinked services')
489 %     )
490 %  {
491 %    $link .= '<BR>'.
492 %             qq!<A CLASS="provision" HREF="${p}misc/link.cgi?!.
493 %             qq!$pkgnum_svcpart">!.
494 %            "Link&nbsp;to&nbsp;legacy&nbsp;$svc_nbsp&nbsp;($num_left)</A>";
495 %  }
496 %  $link;
497 %}
498 %
499 %sub svc_unprovision_link {
500 %  my $svc = shift or return '';
501 %  qq!<A HREF="javascript:areyousure('${p}misc/unprovision.cgi?$svc->{svcnum}',!.
502 %  qq!'Permanently unprovision and delete this service?')">Unprovision</A>!;
503 %}
504 %
505 %# This should be generalized to use config options to determine order.
506 %sub pkgsort_pkgnum_cancel {
507 %  if ($a->{cancel} and $b->{cancel}) {
508 %    return ($a->{pkgnum} <=> $b->{pkgnum});
509 %  } elsif ($a->{cancel} or $b->{cancel}) {
510 %    return (-1) if ($b->{cancel});
511 %    return (1) if ($a->{cancel});
512 %    return (0);
513 %  } else {
514 %    return($a->{pkgnum} <=> $b->{pkgnum});
515 %  }
516 %}
517 %
518 %sub pkg_datestr {
519 %  my($pkg, $field, $conf) = @_ or return '';
520 %  return '&nbsp;' unless $pkg->{$field};
521 %  my $format = '<TD align="left"><B>%b</B></TD>'.
522 %               '<TD align="right"><B>&nbsp;%o,</B></TD>'.
523 %               '<TD align="right"><B>&nbsp;%Y</B></TD>';
524 %  #$format .= '&nbsp;<FONT SIZE=-3>%l:%M:%S%P&nbsp;%z</FONT>'
525 %  $format .= '<TD ALIGN="right"><B>&nbsp;%l</TD>'.
526 %             '<TD ALIGN="center"><B>:</B></TD>'.
527 %             '<TD ALIGN="left"><B>%M</B></TD>'.
528 %             '<TD ALIGN="left"><B>&nbsp;%P</B></TD>'
529 %    if $conf->exists('cust_pkg-display_times');
530 %  ( my $strip = time2str($format, $pkg->{$field}) ) =~ s/ (\d)/$1/g;
531 %  $strip;
532 %}
533 %
534 %sub pkg_change_link {
535 %  my $pkg = shift or return '';
536 %  return qq!<a href="${p}misc/change_pkg.cgi?$pkg->{pkgnum}">!.
537 %         qq!Change&nbsp;package</a>!;
538 %}
539 %
540 %sub pkg_suspend_link {
541 %  my $pkg = shift or return '';
542 %  return qq!<a href="${p}misc/susp_pkg.cgi?$pkg->{pkgnum}">Suspend</a>!;
543 %}
544 %
545 %sub pkg_unsuspend_link {
546 %  my $pkg = shift or return '';
547 %  return qq!<a href="${p}misc/unsusp_pkg.cgi?$pkg->{pkgnum}">Unsuspend</a>!;
548 %}
549 %
550 %sub pkg_cancel_link {
551 %  my $pkg = shift or return '';
552 %  qq!<A HREF="javascript:areyousure('${p}misc/cancel_pkg.cgi?$pkg->{pkgnum}', !.
553 %  qq!'Permanently delete included services and cancel this package?')">!.
554 %  qq!Cancel now</A>!;
555 %}
556 %
557 %sub pkg_expire_link {
558 %  my $pkg = shift or return '';
559 %  qq!<A HREF="${p}misc/expire_pkg.cgi?$pkg->{pkgnum}">Cancel later</A>!;
560 %}
561 %
562 %sub pkg_dates_link {
563 %  my $pkg = shift or return '';
564 %  qq!<A HREF="${p}edit/REAL_cust_pkg.cgi?$pkg->{pkgnum}">Edit&nbsp;dates</A>!;
565 %}
566 %
567 %sub pkg_customize_link {
568 %  my $pkg = shift or return '';
569 %  my $custnum = shift;
570 %  qq!<A HREF="${p}edit/part_pkg.cgi?keywords=$custnum;clone=$pkg->{pkgpart};!.
571 %  qq!pkgnum=$pkg->{pkgnum}">Customize</A>!;
572 %}
573 %
574 %
575