summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/packages/status.html
blob: fefeeef84402f8b138dff20005ebb214164ed1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
<TD CLASS="inv" BGCOLOR="<% $bgcolor %>" VALIGN="top">
  <TABLE CLASS="inv" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">

%#this should use cust_pkg->status and cust_pkg->statuscolor eventually

% if ( $supplemental ) {
    <% pkg_status_row_colspan($cust_pkg, emt('Supplemental'), '', 'color' => '7777FF', %opt) %>
% } elsif ( $cust_pkg->order_date ) {
    <% pkg_status_row($cust_pkg, emt('Ordered'), 'order_date', %opt ) %>
% }

% if ( $cust_pkg->get('cancel') ) { #status: cancelled
%   my $cpr = $cust_pkg->last_cust_pkg_reason('cancel');

    <% pkg_status_row($cust_pkg, emt('Cancelled'), 'cancel', 'color'=>'FF0000', %opt ) %>

    <% pkg_status_row_detached($cust_pkg, %opt) %>

    <% pkg_reason_row($cust_pkg, $cpr, color => 'ff0000', %opt) %>

%   unless ( $cust_pkg->get('setup') ) { 

        <% pkg_status_row_colspan( $cust_pkg, emt('Never billed'), '', %opt, ) %>

%   } else { 

       <% pkg_status_row( $cust_pkg, emt('Setup'), 'setup', %opt ) %>
       <% pkg_status_row_changed( $cust_pkg, %opt ) %>
       <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
       <% pkg_status_row_if( $cust_pkg, emt('Suspended'), 'susp', %opt, curuser=>$curuser ) %>

%   } 
%
%
% } else { # not canceled
%
%   if ( $cust_pkg->get('susp') ) { #suspended or on hold
%
%     #if ( $cust_pkg->order_date eq $cust_pkg->get('susp') ) # inconsistent with FS::cust_pkg::status
%     if ( ! $cust_pkg->setup ) { #status: on hold

        <% pkg_status_row( $cust_pkg, emt('On Hold'), '', 'color'=>'7E0079', %opt ) %>

%     } else { #status: suspended
%       my ($cpr,$susplabel);
%       if ($cust_pkg->is_status_delay_cancel(%opt)) {
%         $cpr = $cust_pkg->last_cust_pkg_reason('expire');
%         $susplabel = 'Suspended (Cancelled)';
%       } else {
%         $cpr = $cust_pkg->last_cust_pkg_reason('susp');
%         $susplabel = 'Suspended';
%       }
        <% pkg_status_row( $cust_pkg, emt($susplabel), 'susp', 'color'=>'FF9900', %opt ) %>
        <% pkg_reason_row( $cust_pkg, $cpr, 'color' => 'FF9900', %opt ) %>

%     }

    <% pkg_status_row_noauto( $cust_pkg, %opt ) %>

    <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>

    <% pkg_status_row_discount( $cust_pkg, %opt ) %>

%   if ( $cust_pkg->order_date ne $cust_pkg->get('susp') ) { # not on hold
%     if ( $cust_pkg->get('setup') ) {
        <% pkg_status_row($cust_pkg, emt('Setup'), 'setup', %opt ) %>
%     } else {
        <% pkg_status_row_colspan( $cust_pkg, emt('Never billed'), '', %opt ) %>
%     }
%   }

    <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>

    <% pkg_status_row_changed( $cust_pkg, %opt ) %>
    <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
%   if ( $cust_pkg->option('suspend_bill', 1)
%        || ( $part_pkg->option('suspend_bill', 1)
%               && ! $cust_pkg->option('no_suspend_bill',1)
%           )
%      )
%   {
      <% pkg_status_row_if( $cust_pkg, emt('Next bill'), 'bill', %opt, curuser=>$curuser ) %>
%   }
    <% pkg_status_row_if( $cust_pkg, emt('Will resume'), 'resume', %opt, curuser=>$curuser ) %>
    <% pkg_status_row_expire($cust_pkg, %opt, curuser=>$curuser) %>
    <% pkg_status_row_if( $cust_pkg, emt('Contract ends'), 'contract_end', %opt ) %>

%   } else { #status: active
%
%     if ( $change_from ) { # future change
%
          <% pkg_status_row_colspan( $cust_pkg, emt('Waiting for package change'), '', %opt ) %>
          <% pkg_status_row_if( $cust_pkg,
                             emt('Will be activated on'),
                             'start_date',
                             %opt ) %>
%
%     } elsif ( ! $cust_pkg->get('setup') ) { # not setup
%
%       unless ( $part_pkg->freq ) { # one-time charge

          <% pkg_status_row_colspan( $cust_pkg, emt('Not yet billed (one-time charge)'), '', %opt ) %>

          <% pkg_status_row_noauto( $cust_pkg, %opt ) %>

          <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>

          <% pkg_status_row_discount( $cust_pkg, %opt ) %>

          <% pkg_status_row_if(
               $cust_pkg,
               ( $part_pkg->freq ? emt('Start billing') : emt('Bill on') ),
               'start_date',
               %opt
             )
          %>

          <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>

%       } else { # recurring package, not yet billed

          <% pkg_status_row_colspan($cust_pkg, emt("Not yet billed ($billed_or_prepaid [_1])", myfreq($part_pkg) ), '', %opt ) %>

          <% pkg_status_row_noauto( $cust_pkg, %opt ) %>

          <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>

          <% pkg_status_row_discount( $cust_pkg, %opt ) %>

          <% pkg_status_row_if($cust_pkg, emt('Start billing'), 'start_date', %opt) %>
          <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>

%       } 
%
%     } else { #setup
%
%       unless ( $part_pkg->freq ) { 

          <% pkg_status_row_colspan($cust_pkg, emt('One-time charge'), '', %opt ) %>

          <% pkg_status_row($cust_pkg, emt('Billed'), 'setup', %opt) %>

          <% pkg_status_row_noauto( $cust_pkg, %opt ) %>

          <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>

          <% pkg_status_row_discount( $cust_pkg, %opt ) %>

          <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>

%       } else { # recurring package
%
%         my $num_cust_svc = $cust_pkg->num_cust_svc;
%         my $summarize = $opt{'cust_pkg-large_pkg_size'} > 0
%                           && $opt{'cust_pkg-large_pkg_size'} <= $num_cust_svc;
%
%         #overlimit process is expensive with many services, so skip w/summary
%         if ( !$summarize && scalar($cust_pkg->overlimit) ) {

            <% pkg_status_row_colspan( $cust_pkg,
                 emt('Overlimit'),
                 $billed_or_prepaid. '&nbsp;'. myfreq($part_pkg),
                 'color'=>'FFD000',
                 %opt
               )
            %>

%         } else {
            <% pkg_status_row_colspan( $cust_pkg,
                 emt('Active'),
                 $billed_or_prepaid. '&nbsp;'. myfreq($part_pkg),
                 'color'=>'00CC00',
                 %opt
               )
            %>
%         } 

          <% pkg_status_row_noauto( $cust_pkg, %opt ) %>

          <% pkg_status_row_separate_bill( $cust_pkg, %opt ) %>

          <% pkg_status_row_discount( $cust_pkg, %opt ) %>

          <% pkg_status_row($cust_pkg, emt('Setup'), 'setup', %opt) %>

          <% pkg_status_row_if($cust_pkg, emt('Un-cancelled'), 'uncancel', %opt ) %>

%       } 
%
%     }
%
%     if ( $opt{'cust_pkg-show_autosuspend'} ) {
%       my $autosuspend = pkg_autosuspend_time( $cust_pkg );
%       $cust_pkg->set('autosuspend', $autosuspend) if $autosuspend;
%     }

      <% pkg_status_row_changed( $cust_pkg, %opt ) %>
      <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
      <% pkg_status_row_if( $cust_pkg, $next_bill_or_prepaid_until, 'bill', %opt, curuser=>$curuser ) %>
      <% pkg_status_row_if($cust_pkg, emt('Will automatically suspend by'), 'autosuspend', %opt) %>
      <% pkg_status_row_if($cust_pkg, emt('Automatic suspension delayed until'), 'dundate', %opt) %>
      <% pkg_status_row_if( $cust_pkg, emt('Will suspend on'), 'adjourn', %opt, curuser=>$curuser ) %>
      <% pkg_status_row_if( $cust_pkg, emt('Will resume on'), 'resume', %opt, curuser=>$curuser ) %>
      <% pkg_status_row_expire($cust_pkg, %opt, curuser=>$curuser) %>
      <% pkg_status_row_if( $cust_pkg, emt('Contract ends'), 'contract_end', %opt ) %>


%   } 
% } 

  </TABLE>
</TD>
<%init>

my %opt = @_;

my $bgcolor  = $opt{'bgcolor'};
my $cust_pkg = $opt{'cust_pkg'};
my $part_pkg = $opt{'part_pkg'};
my $curuser  = $FS::CurrentUser::CurrentUser;
my $width    = $opt{'cust_pkg-display_times'} ? '38%' : '56%';
my $supplemental = $opt{'supplemental'};
my $change_from  = $opt{'change_from'};

$opt{colspan}  = $opt{'cust_pkg-display_times'} ? 8 : 4;

#false laziness w/edit/REAL_cust_pkg.cgi
my( $billed_or_prepaid, $last_bill_or_renewed, $next_bill_or_prepaid_until );
unless ( $part_pkg->is_prepaid ) {
  $billed_or_prepaid = 'billed';
  $last_bill_or_renewed = 'Last&nbsp;bill';
  $next_bill_or_prepaid_until = 'Next&nbsp;bill';
} else {
  $billed_or_prepaid = 'prepaid';
  $last_bill_or_renewed = 'Renewed';
  $next_bill_or_prepaid_until = 'Prepaid&nbsp;until';
}

#subroutines

sub myfreq {
  my $part_pkg = shift;
  my $freq = $part_pkg->freq_pretty;
  #$freq =~ s/ /&nbsp;/g;
  $freq;
}

#false laziness w/package.html
sub pkg_link {
  my($action, $label, $cust_pkg) = @_;
  return '' unless $cust_pkg;
  qq!<a href="$p$action.cgi?!. $cust_pkg->pkgnum. qq!">$label</a>!;
}

sub pkg_status_row {
  my( $cust_pkg, $title, $field, %opt ) = @_;

  if ( $field and $cust_pkg->main_pkgnum ) {
    # for supplemental packages, we mostly only show these if they're 
    # different from the main package
    my $main_pkg = $cust_pkg-> main_pkg;
    if (    $main_pkg->get($field) ne $cust_pkg->get($field)
        # with some exceptions
        or  $field eq 'bill'
        or  $field eq 'last_bill'
        or  $field eq 'setup'
        or  $field eq 'susp'
        or  $field eq 'cancel'
      ) {
      # handle it normally
    } else {
      return '';
    }
  }

  my $color = $opt{'color'};

  my $html = qq(<TR><TD WIDTH="$width" ALIGN="right">);
  $html   .= qq(<FONT COLOR="#$color"><B>) if length($color);
  $html   .= qq($title&nbsp;);
  $html   .= qq(</B></FONT>) if length($color);

  if ( $opt{'pkg_balances'} && ! $cust_pkg->{_printed_balance}++ ) { #kludge
    $html .= ' (Balance:&nbsp;<B>'. $opt{'money_char'}.
             $cust_pkg->cust_main->balance_pkgnum($cust_pkg->pkgnum).
             '</B>)';
  }

  $html   .= qq(</TD>);
  $html   .= pkg_datestr($cust_pkg, $field, %opt). '</TR>';

  $html;
}

sub pkg_status_row_if {
  my( $cust_pkg, $title, $field, %opt ) = @_;
  
  $title = '<FONT SIZE=-1>(&nbsp;'. pkg_unadjourn_link($cust_pkg). '&nbsp;)&nbsp;</FONT>'. $title
    if ( $field eq 'adjourn' &&
         $opt{curuser}->access_right('Suspend customer package later')
       );

  $cust_pkg->get($field) ? pkg_status_row($cust_pkg, $title, $field, %opt) : '';
}

sub pkg_status_row_expire {
  my $cust_pkg = shift;
  my %opt = @_;
  return unless $cust_pkg->get('expire');

  my $title;

  if ( $cust_pkg->get('change_to_pkg') ) {
    if ( $cust_pkg->change_to_pkg->pkgpart != $cust_pkg->pkgpart ) {
      $title = mt('Will change to <b>[_1]</b> on',
                 $cust_pkg->change_to_pkg->part_pkg->pkg);
    } elsif ( $cust_pkg->change_to_pkg->locationnum != $cust_pkg->locationnum )
    {
      $title = mt('Will <b>change location</b> on');
    } elsif (( $cust_pkg->change_to_pkg->quantity != $cust_pkg->quantity ) ||
             ( $cust_pkg->change_to_pkg->contract_end != $cust_pkg->contract_end ))
    {
      $title = mt('Will change on');
    } else {
      # FS::cust_pkg->change_later should have prevented this, but 
      # just so that we can display _something_
      $title = '<font color="#ff0000">Unknown package change</font>';
    }

  } else {

    $title = emt('Expires');
    if ( $opt{curuser}->access_right('Cancel customer package later')) {
      $title = '<FONT SIZE=-1>(&nbsp;'. pkg_unexpire_link($cust_pkg). '&nbsp;)&nbsp;</FONT>'. $title;
    }

  }

  pkg_status_row( $cust_pkg, $title, 'expire', %opt );
}

sub pkg_status_row_changed {
  my( $cust_pkg, %opt ) = @_;

  return '' unless $cust_pkg->change_date;

  my $html =
    pkg_status_row( $cust_pkg, emt('Changed'), 'change_date', %opt );

  my $old = $cust_pkg->old_cust_pkg;
  if ( $old ) {
    my $part_pkg = $old->part_pkg;
    $html .= pkg_status_row_colspan(
      $cust_pkg, 
#      emt("Changed from [_1]: [_2]",
#             $cust_pkg->change_pkgnum,
#             $part_pkg->pkg_comment(cust_pkg=>$old, nopartpkg=>1)
#         ),
      '',
      '',
      'size'    => '-1',
      'align'   => 'right',
    );
  }

  $html;
}

sub pkg_status_row_detached {
  my( $cust_pkg, %opt ) = @_;

  return '' unless $cust_pkg->change_custnum;

  my $html = '';

  my $cust_main = $cust_pkg->change_cust_main;
  if ( $cust_main ) {

    my $cust_link = '<A HREF="cust_main.cgi?'.  $cust_pkg->change_custnum. '">'.
                      encode_entities( $cust_main->name ).
                    '</A>';

    my $what = $opt{'pkg_attached'} ? 'Attached' : 'Detached';

    $html .= pkg_status_row_colspan( $cust_pkg, 
                                     emt("$what to customer #[_1]: ",
                                            $cust_pkg->change_custnum
                                        ).
                                       $cust_link,
                                     '',
                                     'size'    => '-1',
                                     'align'   => 'right',
                                     'colspan' => 4,
                                   );
  }

  $html;
}

sub pkg_status_row_noauto {
  my( $cust_pkg, %opt ) = @_;

  return '' unless ( $cust_pkg->no_auto || $opt{'part_pkg'}->no_auto )
                && $opt{'has_cust_payby_auto'};

  pkg_status_row_colspan( $cust_pkg, emt("No automatic charge"), '');
}

sub pkg_status_row_separate_bill {
  my $cust_pkg = shift;
  return '' unless $cust_pkg->separate_bill;
  pkg_status_row_colspan( $cust_pkg, emt("Invoiced separately") );
}

sub pkg_status_row_discount {
  my( $cust_pkg, %opt ) = @_;

  my $html;

  if ( $cust_pkg->waive_setup ) {
    my $label = '<SPAN STYLE="font-size: small;font-weight: bold">' .
                 emt('Setup fee waived') .
                 '</SPAN>';
    $html .= pkg_status_row_colspan( $cust_pkg, $label, '', %opt );
  }

  foreach my $cust_pkg_discount (@{ $cust_pkg->{_cust_pkg_discount_active} }) {

    my $discount = $cust_pkg_discount->discount;

    my $label = '<SPAN STYLE="font-size: small"><B>';
    if ( $cust_pkg_discount->setuprecur eq 'setup' ) {
      $label .= emt('Setup Discount');
    } else {
      $label .= emt('Recurring Discount');
    }
    $label .= '</B>: '. $discount->description;
    if ( $discount->months > 0 and $cust_pkg_discount->months_used > 0 ) {
      my $remaining = $discount->months - $cust_pkg_discount->months_used;
      $remaining = sprintf('%.2f', $remaining) if $remaining =~ /\./;
      $label .= <br> . emt(" ([quant,_1,month,months] remaining)",$remaining);
    }
    $label .= '</SPAN>';

    #$label .= ' <FONT SIZE="-1">('.
    #            '<A HREF="../misc/delete-cust_pkg_discount.html?'.
    #              $cust_pkg_discount->pkgdiscountnum.
    #            '">'.emt('remove discount').'</A>)</FONT>';

    $html .= pkg_status_row_colspan( $cust_pkg, $label, '', %opt );

  }

  $html;
}

sub pkg_reason_row {
  my ($cust_pkg, $cpr, %opt) = @_;
  return '' if $cust_pkg->main_pkgnum;

  my $reasontext = '';
  $reasontext = $cpr->reasontext . ' by ' . $cpr->otaker if $cpr;
  pkg_status_row_colspan( $cust_pkg, $reasontext, '',
    'align'=>'right', 'size'=>'-2', %opt
  );
}

sub pkg_status_row_colspan {
  my($cust_pkg, $title, $addl, %opt) = @_;

  my $colspan  = $opt{'colspan'};

  my $align = $opt{'align'} ? 'ALIGN="'. $opt{'align'}.'"' : '';
  my $color = $opt{'color'} ? 'COLOR="#'.$opt{'color'}.'"' : '';
  my $size  = $opt{'size'}  ? 'SIZE="'.  $opt{'size'}. '"' : '';

  my $html = qq(<TR><TD COLSPAN=$colspan $align>);
  $html   .= qq(<FONT $color $size>) if length($color) || $size;
  $html   .= qq(<B>) if $color && !$size;
  $html   .= $title;
  $html   .= qq(</B>) if $color && !$size;
  $html   .= qq(</FONT>) if length($color) || $size;
  $html   .= ",&nbsp;$addl" if length($addl);

  if ( $opt{'pkg-balances'} && ! $cust_pkg->{_printed_balance}++ ) { #kludge
    $html .= ' (Balance:&nbsp;<B>'. $opt{'money_char'}.
             $cust_pkg->cust_main->balance_pkgnum($cust_pkg->pkgnum).
             '</B>)';
  }

  $html   .= qq(</TD></TR>);

  $html;

}

sub pkg_datestr {
  my($cust_pkg, $field, %opt) = @_ or return '';
  return '&nbsp;' unless $cust_pkg->get($field);
  my $format = '<TD align="left"><B>%b</B></TD>'.
               '<TD align="right"><B>&nbsp;%o,</B></TD>'.
               '<TD align="right"><B>&nbsp;%Y</B></TD>';
  #$format .= '&nbsp;<FONT SIZE=-3>%l:%M:%S%P&nbsp;%z</FONT>'
  $format .= '<TD ALIGN="right"><B>&nbsp;%l</TD>'.
             '<TD ALIGN="center"><B>:</B></TD>'.
             '<TD ALIGN="left"><B>%M</B></TD>'.
             '<TD ALIGN="left"><B>&nbsp;%P</B></TD>'
    if $opt{'cust_pkg-display_times'};
  my $strip = time2str($format, $cust_pkg->get($field) );
  $strip =~ s/ (\d)/$1/g;
  $strip;
}

sub pkg_unadjourn_link { pkg_link('misc/unadjourn_pkg', emt('Abort'),     @_ ); }
sub pkg_unexpire_link  { pkg_link('misc/unexpire_pkg',  emt('Abort'),     @_ ); }

sub svc_recharge_link {
  include( '/elements/popup_link-cust_svc.html',
             'action'      => $p. 'misc/recharge_svc.html',
             'label'       => emt('Recharge'),
             'actionlabel' => emt('Recharge'),
             'color'       => '#333399',
             'cust_svc'    => shift,
         )
}

sub pkg_autosuspend_time {
  my $cust_pkg = shift or return '';
  my $days = 7;
  my $time = time;
  my $pending_suspend = 0;
  #this seems to be extremely inefficient...  and is slowing down all customer
  #views
  while ( $days > 0 &&
          scalar(
            grep { $_->part_event->action eq 'suspend' }
            @{$cust_pkg->cust_main->due_cust_event( time => $time + 86400*$days,
                                                    testonly => 1,
                                                  ) }
          )
        )
  {
    $pending_suspend = 1;
    $days--;
  }

  $pending_suspend ? time + ($days + 1) * 86400 : '';

}

</%init>