Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / view / cust_main / packages / status.html
1 <TD CLASS="inv" BGCOLOR="<% $bgcolor %>" VALIGN="top">
2   <TABLE CLASS="inv" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
3
4 %#this should use cust_pkg->status and cust_pkg->statuscolor eventually
5
6 % if ( $supplemental ) {
7     <% pkg_status_row_colspan($cust_pkg, emt('Supplemental'), '', 'color' => '7777FF', %opt) %>
8 % } elsif ( $cust_pkg->order_date ) {
9     <% pkg_status_row($cust_pkg, emt('Ordered'), 'order_date', %opt ) %>
10 % }
11
12 % if ( $cust_pkg->get('cancel') ) { #status: cancelled
13 %   my $cpr = $cust_pkg->last_cust_pkg_reason('cancel');
14
15     <% pkg_status_row($cust_pkg, emt('Cancelled'), 'cancel', 'color'=>'FF0000', %opt ) %>
16
17     <% pkg_status_row_detached($cust_pkg, %opt) %>
18
19     <% pkg_reason_row($cust_pkg, $cpr, color => 'ff0000', %opt) %>
20
21 %   unless ( $cust_pkg->get('setup') ) { 
22
23         <% pkg_status_row_colspan( $cust_pkg, emt('Never billed'), '', %opt, ) %>
24
25 %   } else { 
26
27        <% pkg_status_row( $cust_pkg, emt('Setup'), 'setup', %opt ) %>
28        <% pkg_status_row_changed( $cust_pkg, %opt ) %>
29        <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
30        <% pkg_status_row_if( $cust_pkg, emt('Suspended'), 'susp', %opt, curuser=>$curuser ) %>
31
32 %   } 
33 %
34 %   if ( $part_pkg->freq && !$supplemental && !$cust_pkg->change_custnum ) { #?
35
36       <TR>
37         <TD COLSPAN=<%$opt{colspan}%>>
38           <FONT SIZE=-1>
39 %           if ( $curuser->access_right('Un-cancel customer package') && ! $opt{no_links} ) { 
40               (&nbsp;<% pkg_uncancel_link($cust_pkg) %>&nbsp;)
41 %           } 
42           <FONT>
43         </TD>
44       </TR>
45 %   }
46 %
47 % } else {
48 %
49 %   if ( $cust_pkg->get('susp') ) { #suspended or on hold
50 %
51 %     #if ( $cust_pkg->order_date eq $cust_pkg->get('susp') ) { # inconsistent with FS::cust_pkg::status
52 %     if ( ! $cust_pkg->setup ) { #status: on hold
53
54         <% pkg_status_row( $cust_pkg, emt('On Hold'), '', 'color'=>'7E0079', %opt ) %>
55
56 %     } else { #status: suspended
57 %       my ($cpr,$susplabel);
58 %       if ($cust_pkg->is_status_delay_cancel) {
59 %         $cpr = $cust_pkg->last_cust_pkg_reason('expire');
60 %         $susplabel = 'Suspended (Cancelled)';
61 %       } else {
62 %         $cpr = $cust_pkg->last_cust_pkg_reason('susp');
63 %         $susplabel = 'Suspended';
64 %       }
65         <% pkg_status_row( $cust_pkg, emt($susplabel), 'susp', 'color'=>'FF9900', %opt ) %>
66         <% pkg_reason_row( $cust_pkg, $cpr, 'color' => 'FF9900', %opt ) %>
67
68 %     }
69
70     <% pkg_status_row_noauto( $cust_pkg, %opt ) %>
71
72     <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>
73
74     <% pkg_status_row_discount( $cust_pkg, %opt ) %>
75
76 %   unless ( $cust_pkg->order_date eq $cust_pkg->get('susp') ) { #on hold
77 %     unless ( $cust_pkg->get('setup') ) { 
78         <% pkg_status_row_colspan( $cust_pkg, emt('Never billed'), '', %opt ) %>
79 %     } else { 
80         <% pkg_status_row($cust_pkg, emt('Setup'), 'setup', %opt ) %>
81 %     }
82 %   } 
83
84     <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>
85
86     <% pkg_status_row_changed( $cust_pkg, %opt ) %>
87     <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
88 %   if ( $cust_pkg->option('suspend_bill', 1)
89 %        || ( $part_pkg->option('suspend_bill', 1)
90 %               && ! $cust_pkg->option('no_suspend_bill',1)
91 %           )
92 %      )
93 %   {
94       <% pkg_status_row_if( $cust_pkg, emt('Next bill'), 'bill', %opt, curuser=>$curuser ) %>
95 %   }
96     <% pkg_status_row_if( $cust_pkg, emt('Will resume'), 'resume', %opt, curuser=>$curuser ) %>
97     <% pkg_status_row_expire($cust_pkg, %opt, curuser=>$curuser) %>
98     <% pkg_status_row_if( $cust_pkg, emt('Contract ends'), 'contract_end', %opt ) %>
99
100 % if ( !$supplemental && ! $opt{no_links} && !$change_from ) {
101       <TR>
102         <TD COLSPAN=<%$opt{colspan}%>>
103           <FONT SIZE=-1>
104 %           if ( $cust_pkg->change_to_pkgnum ) {
105 %               # then you can modify the package change
106 %               if ( $curuser->access_right('Change customer package') ) {
107                 (&nbsp;<% pkg_change_now_link($cust_pkg) %>&nbsp;)
108                 (&nbsp;<% pkg_change_later_link($cust_pkg) %>&nbsp;)
109                 (&nbsp;<% pkg_unchange_link($cust_pkg) %>&nbsp;)
110                 <BR>
111 %               }
112 %           }
113 %           if ( $curuser->access_right('Unsuspend customer package') ) { 
114 %             if ( $cust_pkg->order_date eq $cust_pkg->get('susp') ) { #on hold
115                 (&nbsp;<% pkg_link('misc/unsusp_pkg', emt('Start bililng now'), $cust_pkg) %>&nbsp;)
116 %             } else {
117                 (&nbsp;<% pkg_unsuspend_link($cust_pkg) %>&nbsp;)
118                 (&nbsp;<% pkg_resume_link($cust_pkg) %>&nbsp;)
119 %             }
120 %           }
121 %           if ( !$cust_pkg->change_to_pkgnum and
122 %                $curuser->access_right('Cancel customer package immediately')
123 %           ) {
124               (&nbsp;<% pkg_cancel_link($cust_pkg) %>&nbsp;)
125 %           } 
126           </FONT>
127         </TD>
128       </TR>
129 %     }
130 %
131 %   } else { #status: active
132 %
133 %     if ( $change_from ) { # future change
134 %
135           <% pkg_status_row_colspan( $cust_pkg, emt('Waiting for package change'), '', %opt ) %>
136           <% pkg_status_row( $cust_pkg,
137                              emt('Will be activated on'),
138                              'start_date',
139                              %opt ) %>
140 %
141 %     } elsif ( ! $cust_pkg->get('setup') ) { # not setup
142 %
143 %       unless ( $part_pkg->freq ) { # one-time charge
144
145           <% pkg_status_row_colspan( $cust_pkg, emt('Not yet billed (one-time charge)'), '', %opt ) %>
146
147           <% pkg_status_row_noauto( $cust_pkg, %opt ) %>
148
149           <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>
150
151           <% pkg_status_row_discount( $cust_pkg, %opt ) %>
152
153           <% pkg_status_row_if(
154                $cust_pkg,
155                ( $part_pkg->freq ? emt('Start billing') : emt('Bill on') ),
156                'start_date',
157                %opt
158              )
159           %>
160
161           <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>
162
163 %         if ( !$supplemental && ! $opt{no_links} ) {
164           <TR>
165             <TD COLSPAN=<%$opt{colspan}%>>
166               <FONT SIZE=-1>
167 %               if ( $curuser->access_right('Cancel customer package immediately') ) { 
168                   (&nbsp;<% pkg_cancel_link($cust_pkg) %>&nbsp;)
169 %               } 
170               </FONT>
171             </TD>
172           </TR>
173 %         }
174
175 %       } else { 
176
177           <% pkg_status_row_colspan($cust_pkg, emt("Not yet billed ($billed_or_prepaid [_1])", myfreq($part_pkg) ), '', %opt ) %>
178
179           <% pkg_status_row_noauto( $cust_pkg, %opt ) %>
180
181           <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>
182
183           <% pkg_status_row_discount( $cust_pkg, %opt ) %>
184
185           <% pkg_status_row_if($cust_pkg, emt('Start billing'), 'start_date', %opt) %>
186           <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>
187
188 %       } 
189 %
190 %     } else { #setup
191 %
192 %       unless ( $part_pkg->freq ) { 
193
194           <% pkg_status_row_colspan($cust_pkg, emt('One-time charge'), '', %opt ) %>
195
196           <% pkg_status_row($cust_pkg, emt('Billed'), 'setup', %opt) %>
197
198           <% pkg_status_row_noauto( $cust_pkg, %opt ) %>
199
200           <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>
201
202           <% pkg_status_row_discount( $cust_pkg, %opt ) %>
203
204           <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>
205
206 %       } else { 
207 %
208 %         my $num_cust_svc = $cust_pkg->num_cust_svc;
209 %         my $summarize = $opt{'cust_pkg-large_pkg_size'} > 0
210 %                           && $opt{'cust_pkg-large_pkg_size'} <= $num_cust_svc;
211 %
212 %         #overlimit process is expensive with many services, so skip w/summary
213 %         if ( !$summarize && scalar($cust_pkg->overlimit) ) {
214
215             <% pkg_status_row_colspan( $cust_pkg,
216                  emt('Overlimit'),
217                  $billed_or_prepaid. '&nbsp;'. myfreq($part_pkg),
218                  'color'=>'FFD000',
219                  %opt
220                )
221             %>
222
223 %         } else {
224             <% pkg_status_row_colspan( $cust_pkg,
225                  emt('Active'),
226                  $billed_or_prepaid. '&nbsp;'. myfreq($part_pkg),
227                  'color'=>'00CC00',
228                  %opt
229                )
230             %>
231 %         } 
232
233           <% pkg_status_row_noauto( $cust_pkg, %opt ) %>
234
235           <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>
236
237           <% pkg_status_row_discount( $cust_pkg, %opt ) %>
238
239           <% pkg_status_row($cust_pkg, emt('Setup'), 'setup', %opt) %>
240
241           <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>
242
243 %       } 
244 %
245 %     }
246 %
247 %     if ( $opt{'cust_pkg-show_autosuspend'} ) {
248 %       my $autosuspend = pkg_autosuspend_time( $cust_pkg );
249 %       $cust_pkg->set('autosuspend', $autosuspend) if $autosuspend;
250 %     }
251
252       <% pkg_status_row_changed( $cust_pkg, %opt ) %>
253       <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
254       <% pkg_status_row_if( $cust_pkg, $next_bill_or_prepaid_until, 'bill', %opt, curuser=>$curuser ) %>
255       <% pkg_status_row_if($cust_pkg, emt('Will automatically suspend by'), 'autosuspend', %opt) %>
256       <% pkg_status_row_if($cust_pkg, emt('Automatic suspension delayed until'), 'dundate', %opt) %>
257       <% pkg_status_row_if( $cust_pkg, emt('Will suspend on'), 'adjourn', %opt, curuser=>$curuser ) %>
258       <% pkg_status_row_if( $cust_pkg, emt('Will resume on'), 'resume', %opt, curuser=>$curuser ) %>
259       <% pkg_status_row_expire($cust_pkg, %opt, curuser=>$curuser) %>
260       <% pkg_status_row_if( $cust_pkg, emt('Contract ends'), 'contract_end', %opt ) %>
261
262 %     if ( $part_pkg->freq and !$supplemental && ! $opt{no_links} ) { 
263
264         <TR>
265           <TD COLSPAN=<%$opt{colspan}%>>
266             <FONT SIZE=-1>
267 % # action links
268 %           if ( $change_from ) {
269 %               # nothing
270 %           } elsif ( $cust_pkg->change_to_pkgnum ) {
271 %               # then you can modify the package change
272 %               if ( $curuser->access_right('Change customer package') ) {
273                 (&nbsp;<% pkg_change_now_link($cust_pkg) %>&nbsp;)
274                 (&nbsp;<% pkg_change_later_link($cust_pkg) %>&nbsp;)
275                 (&nbsp;<% pkg_unchange_link($cust_pkg) %>&nbsp;)
276                 <BR>
277 %               }
278 %           }
279
280 %           # suspension actions--always available
281 %           if ( $curuser->access_right('Suspend customer package') ) { 
282               (&nbsp;<% pkg_suspend_link($cust_pkg) %>&nbsp;)
283 %           } 
284 %           if ( $curuser->access_right('Suspend customer package later') ) { 
285               (&nbsp;<% pkg_adjourn_link($cust_pkg) %>&nbsp;)
286 %           } 
287 %           if ( $curuser->access_right('Delay suspension events') ) { 
288               (&nbsp;<% pkg_delay_link($cust_pkg) %>&nbsp;)
289 %           }
290 %
291 %           if ( $change_from or $cust_pkg->change_to_pkgnum ) {
292 %               # you can't cancel the package while in this state
293 %           } else { # the normal case: links to cancel the package
294               <BR>
295 %             if ( $curuser->access_right('Cancel customer package immediately') ) { 
296                 (&nbsp;<% pkg_cancel_link($cust_pkg) %>&nbsp;)
297 %             }
298 %             if ( $curuser->access_right('Cancel customer package later') ) { 
299                 (&nbsp;<% pkg_expire_link($cust_pkg) %>&nbsp;)
300 %             } 
301 %           }
302
303             <FONT>
304           </TD>
305         </TR>
306 %     }
307 %
308 %   } 
309 % } 
310
311   </TABLE>
312 </TD>
313 <%init>
314
315 my %opt = @_;
316
317 my $bgcolor  = $opt{'bgcolor'};
318 my $cust_pkg = $opt{'cust_pkg'};
319 my $part_pkg = $opt{'part_pkg'};
320 my $curuser  = $FS::CurrentUser::CurrentUser;
321 my $width    = $opt{'cust_pkg-display_times'} ? '38%' : '56%';
322 my $supplemental = $opt{'supplemental'};
323 my $change_from  = $opt{'change_from'};
324
325 $opt{colspan}  = $opt{'cust_pkg-display_times'} ? 8 : 4;
326
327 #false laziness w/edit/REAL_cust_pkg.cgi
328 my( $billed_or_prepaid, $last_bill_or_renewed, $next_bill_or_prepaid_until );
329 unless ( $part_pkg->is_prepaid ) {
330   $billed_or_prepaid = 'billed';
331   $last_bill_or_renewed = 'Last&nbsp;bill';
332   $next_bill_or_prepaid_until = 'Next&nbsp;bill';
333 } else {
334   $billed_or_prepaid = 'prepaid';
335   $last_bill_or_renewed = 'Renewed';
336   $next_bill_or_prepaid_until = 'Prepaid&nbsp;until';
337 }
338
339 #subroutines
340
341 sub myfreq {
342   my $part_pkg = shift;
343   my $freq = $part_pkg->freq_pretty;
344   #$freq =~ s/ /&nbsp;/g;
345   $freq;
346 }
347
348 #false laziness w/package.html
349 sub pkg_link {
350   my($action, $label, $cust_pkg) = @_;
351   return '' unless $cust_pkg;
352   qq!<a href="$p$action.cgi?!. $cust_pkg->pkgnum. qq!">$label</a>!;
353 }
354
355 sub pkg_status_row {
356   my( $cust_pkg, $title, $field, %opt ) = @_;
357
358   if ( $field and $cust_pkg->main_pkgnum ) {
359     # for supplemental packages, we mostly only show these if they're 
360     # different from the main package
361     my $main_pkg = $cust_pkg-> main_pkg;
362     if (    $main_pkg->get($field) ne $cust_pkg->get($field)
363         # with some exceptions
364         or  $field eq 'bill'
365         or  $field eq 'last_bill'
366         or  $field eq 'setup'
367         or  $field eq 'susp'
368         or  $field eq 'cancel'
369       ) {
370       # handle it normally
371     } else {
372       return '';
373     }
374   }
375
376   my $color = $opt{'color'};
377
378   my $html = qq(<TR><TD WIDTH="$width" ALIGN="right">);
379   $html   .= qq(<FONT COLOR="#$color"><B>) if length($color);
380   $html   .= qq($title&nbsp;);
381   $html   .= qq(</B></FONT>) if length($color);
382
383   if ( $opt{'pkg_balances'} && ! $cust_pkg->{_printed_balance}++ ) { #kludge
384     $html .= ' (Balance:&nbsp;<B>'. $opt{'money_char'}.
385              $cust_pkg->cust_main->balance_pkgnum($cust_pkg->pkgnum).
386              '</B>)';
387   }
388
389   $html   .= qq(</TD>);
390   $html   .= pkg_datestr($cust_pkg, $field, %opt). '</TR>';
391
392   $html;
393 }
394
395 sub pkg_status_row_if {
396   my( $cust_pkg, $title, $field, %opt ) = @_;
397   
398   $title = '<FONT SIZE=-1>(&nbsp;'. pkg_unadjourn_link($cust_pkg). '&nbsp;)&nbsp;</FONT>'. $title
399     if ( $field eq 'adjourn' &&
400          $opt{curuser}->access_right('Suspend customer package later')
401        );
402
403   $cust_pkg->get($field) ? pkg_status_row($cust_pkg, $title, $field, %opt) : '';
404 }
405
406 sub pkg_status_row_expire {
407   my $cust_pkg = shift;
408   my %opt = @_;
409   return unless $cust_pkg->get('expire');
410
411   my $title;
412
413   if ( $cust_pkg->get('change_to_pkg') ) {
414     if ( $cust_pkg->change_to_pkg->pkgpart != $cust_pkg->pkgpart ) {
415       $title = mt('Will change to <b>[_1]</b> on',
416                  $cust_pkg->change_to_pkg->part_pkg->pkg);
417     } elsif ( $cust_pkg->change_to_pkg->locationnum != $cust_pkg->locationnum )
418     {
419       $title = mt('Will <b>change location</b> on');
420     } else {
421       # FS::cust_pkg->change_later should have prevented this, but 
422       # just so that we can display _something_
423       $title = '<font color="#ff0000">Unknown package change</font>';
424     }
425
426   } else {
427
428     $title = emt('Expires');
429     if ( $opt{curuser}->access_right('Cancel customer package later')) {
430       $title = '<FONT SIZE=-1>(&nbsp;'. pkg_unexpire_link($cust_pkg). '&nbsp;)&nbsp;</FONT>'. $title;
431     }
432
433   }
434
435   pkg_status_row( $cust_pkg, $title, 'expire', %opt );
436 }
437
438 sub pkg_status_row_changed {
439   my( $cust_pkg, %opt ) = @_;
440
441   return '' unless $cust_pkg->change_date;
442
443   my $html =
444     pkg_status_row( $cust_pkg, emt('Package changed'), 'change_date', %opt );
445
446   my $old = $cust_pkg->old_cust_pkg;
447   if ( $old ) {
448     my $part_pkg = $old->part_pkg;
449     $html .= pkg_status_row_colspan(
450       $cust_pkg, 
451       emt("Changed from [_1]: [_2]",
452              $cust_pkg->change_pkgnum,
453              $part_pkg->pkg_comment(cust_pkg=>$old, nopartpkg=>1)
454          ),
455       '',
456       'size'    => '-1',
457       'align'   => 'right',
458     );
459   }
460
461   $html;
462 }
463
464 sub pkg_status_row_detached {
465   my( $cust_pkg, %opt ) = @_;
466
467   return '' unless $cust_pkg->change_custnum;
468
469   my $html = '';
470
471   my $cust_main = $cust_pkg->change_cust_main;
472   if ( $cust_main ) {
473
474     my $cust_link = '<A HREF="cust_main.cgi?'.  $cust_pkg->change_custnum. '">'.
475                       encode_entities( $cust_main->name ).
476                     '</A>';
477
478     my $what = $opt{'pkg_attached'} ? 'Attached' : 'Detached';
479
480     $html .= pkg_status_row_colspan( $cust_pkg, 
481                                      emt("$what to customer #[_1]: ",
482                                             $cust_pkg->change_custnum
483                                         ).
484                                        $cust_link,
485                                      '',
486                                      'size'    => '-1',
487                                      'align'   => 'right',
488                                      'colspan' => 4,
489                                    );
490   }
491
492   $html;
493 }
494
495 sub pkg_status_row_noauto {
496   my( $cust_pkg, %opt ) = @_;
497
498   return '' unless ( $cust_pkg->no_auto || $opt{'part_pkg'}->no_auto );
499                 && $opt{'has_cust_payby_auto'};
500
501   pkg_status_row_colspan( $cust_pkg, emt("No automatic charge"), '');
502 }
503
504 sub pkg_status_row_separate_bill {
505   my $cust_pkg = shift;
506   return '' unless $cust_pkg->separate_bill;
507   pkg_status_row_colspan( $cust_pkg, emt("Invoiced separately") );
508 }
509
510 sub pkg_status_row_discount {
511   my( $cust_pkg, %opt ) = @_;
512
513   my $html;
514
515   foreach my $cust_pkg_discount (@{ $cust_pkg->{_cust_pkg_discount_active} }) {
516
517     my $discount = $cust_pkg_discount->discount;
518
519     my $label = '<B>'.emt('Discount').'</B>: '. $discount->description;
520     if ( $discount->months ) {
521       my $remaining = $discount->months - $cust_pkg_discount->months_used;
522       $remaining = sprintf('%.2f', $remaining) if $remaining =~ /\./;
523       $label .= emt("([_1] months remaining)",$remaining);
524     }
525
526     $label .= ' <FONT SIZE="-1">('.
527                 '<A HREF="../misc/delete-cust_pkg_discount.html?'.
528                   $cust_pkg_discount->pkgdiscountnum.
529                 '">'.emt('remove discount').'</A>)</FONT>';
530
531     $html .= pkg_status_row_colspan( $cust_pkg, $label, '', %opt );
532
533   }
534
535   $html;
536 }
537
538 sub pkg_reason_row {
539   my ($cust_pkg, $cpr, %opt) = @_;
540   return '' if $cust_pkg->main_pkgnum;
541
542   my $reasontext = '';
543   $reasontext = $cpr->reasontext . ' by ' . $cpr->otaker if $cpr;
544   pkg_status_row_colspan( $cust_pkg, $reasontext, '',
545     'align'=>'right', 'size'=>'-2', %opt
546   );
547 }
548
549 sub pkg_status_row_colspan {
550   my($cust_pkg, $title, $addl, %opt) = @_;
551
552   my $colspan  = $opt{'colspan'};
553
554   my $align = $opt{'align'} ? 'ALIGN="'. $opt{'align'}.'"' : '';
555   my $color = $opt{'color'} ? 'COLOR="#'.$opt{'color'}.'"' : '';
556   my $size  = $opt{'size'}  ? 'SIZE="'.  $opt{'size'}. '"' : '';
557
558   my $html = qq(<TR><TD COLSPAN=$colspan $align>);
559   $html   .= qq(<FONT $color $size>) if length($color) || $size;
560   $html   .= qq(<B>) if $color && !$size;
561   $html   .= $title;
562   $html   .= qq(</B>) if $color && !$size;
563   $html   .= qq(</FONT>) if length($color) || $size;
564   $html   .= ",&nbsp;$addl" if length($addl);
565
566   if ( $opt{'pkg-balances'} && ! $cust_pkg->{_printed_balance}++ ) { #kludge
567     $html .= ' (Balance:&nbsp;<B>'. $opt{'money_char'}.
568              $cust_pkg->cust_main->balance_pkgnum($cust_pkg->pkgnum).
569              '</B>)';
570   }
571
572   $html   .= qq(</TD></TR>);
573
574   $html;
575
576 }
577
578 sub pkg_datestr {
579   my($cust_pkg, $field, %opt) = @_ or return '';
580   return '&nbsp;' unless $cust_pkg->get($field);
581   my $format = '<TD align="left"><B>%b</B></TD>'.
582                '<TD align="right"><B>&nbsp;%o,</B></TD>'.
583                '<TD align="right"><B>&nbsp;%Y</B></TD>';
584   #$format .= '&nbsp;<FONT SIZE=-3>%l:%M:%S%P&nbsp;%z</FONT>'
585   $format .= '<TD ALIGN="right"><B>&nbsp;%l</TD>'.
586              '<TD ALIGN="center"><B>:</B></TD>'.
587              '<TD ALIGN="left"><B>%M</B></TD>'.
588              '<TD ALIGN="left"><B>&nbsp;%P</B></TD>'
589     if $opt{'cust_pkg-display_times'};
590   my $strip = time2str($format, $cust_pkg->get($field) );
591   $strip =~ s/ (\d)/$1/g;
592   $strip;
593 }
594
595 sub pkg_suspend_link {
596   include( '/elements/popup_link-cust_pkg.html',
597              'action'      => $p. 'misc/cancel_pkg.html?method=suspend',
598              'label'       => emt('Suspend now'),
599              'actionlabel' => emt('Suspend'),
600              'color'       => '#FF9900',
601              'cust_pkg'    => shift,
602              'height'      => 420,
603          )
604 }
605
606 sub pkg_adjourn_link {
607   include( '/elements/popup_link-cust_pkg.html',
608              'action'      => $p. 'misc/cancel_pkg.html?method=adjourn',
609              'label'       => emt('Suspend later'),
610              'actionlabel' => emt('Adjourn'),
611              'color'       => '#CC6600',
612              'cust_pkg'    => shift,
613              'height'      => 445,
614          )
615 }
616
617 sub pkg_delay_link  {
618   my($cust_pkg) = shift;
619   include( '/elements/popup_link-cust_pkg.html',
620              'action'      => $p. 'misc/delay_susp_pkg.html',
621              'label'       => ( $cust_pkg->dundate
622                                   ? emt('Edit suspension delay')
623                                   : emt('Delay suspend')
624                               ),
625              'actionlabel' => emt('Delay suspend for'),
626              'cust_pkg'    => $cust_pkg,
627          )
628 }
629
630 sub pkg_resume_link {
631   include( '/elements/popup_link-cust_pkg.html',
632              'action'      => $p. 'misc/cancel_pkg.html?method=resume',
633              'label'       => emt('Unsuspend later'),
634              'actionlabel' => emt('Resume'),
635              'color'       => '#00CC00',
636              'cust_pkg'    => shift,
637          )
638 }
639
640 sub pkg_unsuspend_link { pkg_link('misc/unsusp_pkg',    emt('Unsuspend now'), @_ ); }
641 sub pkg_unadjourn_link { pkg_link('misc/unadjourn_pkg', emt('Abort'),     @_ ); }
642 sub pkg_unexpire_link  { pkg_link('misc/unexpire_pkg',  emt('Abort'),     @_ ); }
643 sub pkg_unchange_link  { pkg_link('misc/do_not_change_pkg',  emt('Abort change'),     @_ ); }
644 sub pkg_change_now_link  { pkg_link('misc/change_pkg_now',  emt('Change now'),     @_ ); }
645
646 sub pkg_cancel_link {
647   include( '/elements/popup_link-cust_pkg.html',
648              'action'      => $p. 'misc/cancel_pkg.html?method=cancel',
649              'label'       => emt('Cancel now'),
650              'actionlabel' => emt('Cancel'),
651              'color'       => '#ff0000',
652              'cust_pkg'    => shift,
653          )
654 }
655
656 sub pkg_uncancel_link {
657   include( '/elements/popup_link-cust_pkg.html',
658              'action'      => $p. 'misc/cancel_pkg.html?method=uncancel',
659              'label'       => emt('Un-cancel'),
660              'actionlabel' => emt('Un-cancel'),
661              #'color'       =>  #?
662              'cust_pkg'    => shift,
663          )
664 }
665
666 sub pkg_expire_link {
667   include( '/elements/popup_link-cust_pkg.html',
668              'action'      => $p. 'misc/cancel_pkg.html?method=expire',
669              'label'       => emt('Cancel later'),
670              'actionlabel' => emt('Expire'),
671              'color'       => '#CC0000',
672              'cust_pkg'    => shift,
673          )
674 }
675
676 sub pkg_change_later_link {
677   my $cust_pkg = shift;
678   include( '/elements/popup_link-cust_pkg.html',
679     'action'      => $p . 'misc/change_pkg.cgi?',
680     'label'       => emt('Reschedule'),
681     'actionlabel' => emt('Edit scheduled change for'),
682     'cust_pkg'    => $cust_pkg,
683     'width'       => 960,
684     'height'      => 490,
685   )
686 }
687
688 sub svc_recharge_link {
689   include( '/elements/popup_link-cust_svc.html',
690              'action'      => $p. 'misc/recharge_svc.html',
691              'label'       => emt('Recharge'),
692              'actionlabel' => emt('Recharge'),
693              'color'       => '#333399',
694              'cust_svc'    => shift,
695          )
696 }
697
698 sub pkg_autosuspend_time {
699   my $cust_pkg = shift or return '';
700   my $days = 7;
701   my $time = time;
702   my $pending_suspend = 0;
703   #this seems to be extremely inefficient...  and is slowing down all customer
704   #views
705   while ( $days > 0 &&
706           scalar(
707             grep { $_->part_event->action eq 'suspend' }
708             @{$cust_pkg->cust_main->due_cust_event( time => $time + 86400*$days,
709                                                     testonly => 1,
710                                                   ) }
711           )
712         )
713   {
714     $pending_suspend = 1;
715     $days--;
716   }
717
718   $pending_suspend ? time + ($days + 1) * 86400 : '';
719
720 }
721
722 </%init>