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