optimize customer view: avoid looking up config values inside loops, RT#4728
[freeside.git] / httemplate / view / cust_main / packages / status.html
1 <TD CLASS="inv" BGCOLOR="<% $bgcolor %>">
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 ( $cust_pkg->get('cancel') ) { #status: cancelled
7 %   my $cpr = $cust_pkg->last_cust_pkg_reason('cancel');
8
9     <% pkg_status_row($cust_pkg, 'Cancelled', 'cancel', 'color'=>'FF0000', %opt ) %>
10
11     <% pkg_status_row_colspan(
12          ( $cpr ? $cpr->reasontext. ' by '. $cpr->otaker : '' ), '',
13          'align' => 'right', 'color' => 'ff0000', 'size' => '-2',
14        )
15     %>
16
17 %   unless ( $cust_pkg->get('setup') ) { 
18
19         <% pkg_status_row_colspan('Never billed') %>
20
21 %   } else { 
22
23        <% pkg_status_row( $cust_pkg, 'Setup', 'setup', %opt ) %>
24        <% pkg_status_row_changed( $cust_pkg, %opt ) %>
25        <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
26        <% pkg_status_row_if( $cust_pkg, 'Suspended', 'susp', %opt, curuser=>$curuser ) %>
27
28 %   } 
29 %
30 % } else { 
31 %
32 %   if ( $cust_pkg->get('susp') ) { #status: suspended
33 %     my $cpr = $cust_pkg->last_cust_pkg_reason('susp');
34
35     <% pkg_status_row( $cust_pkg, 'Suspended', 'susp', 'color'=>'FF9900', %opt ) %>
36
37     <% pkg_status_row_colspan(
38          ( $cpr ? $cpr->reasontext. ' by '. $cpr->otaker : '' ), '',
39          'align' => 'right', 'color' => 'FF9900', 'size' => '-2',
40        )
41     %>
42
43 %   unless ( $cust_pkg->get('setup') ) { 
44       <% pkg_status_row_colspan('Never billed') %>
45 %   } else { 
46       <% pkg_status_row($cust_pkg, 'Setup', 'setup', %opt ) %>
47 %   } 
48
49     <% pkg_status_row_changed( $cust_pkg, %opt ) %>
50     <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
51 %   # pkg_status_row($cust_pkg, 'Next bill', 'bill', %opt)
52     <% pkg_status_row_if( $cust_pkg, 'Expires', 'expire', %opt, curuser=>$curuser ) %>
53
54     <TR>
55       <TD COLSPAN=<%$colspan%>>
56         <FONT SIZE=-1>
57 %         if ( $curuser->access_right('Unsuspend customer package') ) { 
58             (&nbsp;<% pkg_unsuspend_link($cust_pkg) %>&nbsp;)
59 %         } 
60 %         if ( $curuser->access_right('Cancel customer package immediately') ) {
61             (&nbsp;<% pkg_cancel_link($cust_pkg) %>&nbsp;)
62 %         } 
63         </FONT>
64       </TD>
65     </TR>
66
67 %   } else { #status: active
68 %
69 %     unless ( $cust_pkg->get('setup') ) { #not setup
70 %
71 %       unless ( $part_pkg->freq ) { 
72
73           <% pkg_status_row_colspan('Not&nbsp;yet&nbsp;billed&nbsp;(one-time&nbsp;charge)') %>
74
75           <TR>
76             <TD COLSPAN=<%$colspan%>>
77               <FONT SIZE=-1>
78 %               if ( $curuser->access_right('Cancel customer package immediately') ) { 
79                   (&nbsp;<% pkg_cancel_link($cust_pkg) %>&nbsp;)
80 %               } 
81               </FONT>
82             </TD>
83           </TR>
84
85 %       } else { 
86
87          <% pkg_status_row_colspan("Not&nbsp;yet&nbsp;billed&nbsp;($billed_or_prepaid&nbsp;". myfreq($part_pkg). ')' ) %>
88
89 %       } 
90 %
91 %     } else { #setup
92 %
93 %       unless ( $part_pkg->freq ) { 
94
95           <% pkg_status_row_colspan('One-time&nbsp;charge') %>
96
97           <% pkg_status_row($cust_pkg, 'Billed', 'setup', %opt) %>
98
99 %       } else { 
100 %
101 %         if (scalar($cust_pkg->overlimit)) {
102
103             <% pkg_status_row_colspan(
104                  'Overlimit',
105                  $billed_or_prepaid. '&nbsp;'. myfreq($part_pkg),
106                  'color' => 'FFD000',
107                )
108             %>
109
110 %         } else {
111             <% pkg_status_row_colspan(
112                  'Active',
113                  $billed_or_prepaid. '&nbsp;'. myfreq($part_pkg),
114                  'color' => '00CC00',
115                )
116             %>
117 %         } 
118
119           <% pkg_status_row($cust_pkg, 'Setup', 'setup', %opt) %>
120
121 %       } 
122 %
123 %     } 
124 %   my $autosuspend = pkg_autosuspend_time( $cust_pkg );
125 %   $cust_pkg->set('autosuspend', $autosuspend) if $autosuspend;
126
127       <% pkg_status_row_changed( $cust_pkg, %opt ) %>
128       <% pkg_status_row_if( $cust_pkg, $last_bill_or_renewed, 'last_bill', %opt, curuser=>$curuser ) %>
129       <% pkg_status_row_if( $cust_pkg, $next_bill_or_prepaid_until, 'bill', %opt, curuser=>$curuser ) %>
130       <% pkg_status_row_if($cust_pkg, 'Will automatically suspend by', 'autosuspend', %opt) %>
131       <% pkg_status_row_if( $cust_pkg, 'Will suspend on', 'adjourn', %opt, curuser=>$curuser ) %>
132       <% pkg_status_row_if( $cust_pkg, 'Expires', 'expire', %opt, curuser=>$curuser ) %>
133
134 %     if ( $part_pkg->freq ) { 
135
136         <TR>
137           <TD COLSPAN=<%$colspan%>>
138             <FONT SIZE=-1>
139 %             if ( $curuser->access_right('Suspend customer package') ) { 
140                 (&nbsp;<% pkg_suspend_link($cust_pkg) %>&nbsp;)
141 %             } 
142 %             if ( $curuser->access_right('Suspend customer package later') ) { 
143                 (&nbsp;<% pkg_adjourn_link($cust_pkg) %>&nbsp;)
144 %             } 
145 %             if ( $curuser->access_right('Delay suspension events') ) { 
146                 (&nbsp;<% pkg_delay_link($cust_pkg) %>&nbsp;)
147 %             } 
148 %             if ( $curuser->access_right('Cancel customer package immediately') ) { 
149                 (&nbsp;<% pkg_cancel_link($cust_pkg) %>&nbsp;)
150 %             } 
151 %             if ( $curuser->access_right('Cancel customer package later') ) { 
152                 (&nbsp;<% pkg_expire_link($cust_pkg) %>&nbsp;)
153 %             } 
154
155             <FONT>
156           </TD>
157         </TR>
158 %     }
159 %
160 %   } 
161 % } 
162
163   </TABLE>
164 </TD>
165
166 <%init>
167
168 my %opt = @_;
169
170 my $bgcolor  = $opt{'bgcolor'};
171 my $cust_pkg = $opt{'cust_pkg'};
172 my $part_pkg = $opt{'part_pkg'};
173 my $curuser  = $FS::CurrentUser::CurrentUser;
174 my $colspan  = $opt{'cust_pkg-display_times'} ? 8 : 4;
175 my $width    = $opt{'cust_pkg-display_times'} ? '38%' : '56%';
176
177 #false laziness w/edit/REAL_cust_pkg.cgi
178 my( $billed_or_prepaid, $last_bill_or_renewed, $next_bill_or_prepaid_until );
179 unless ( $part_pkg->is_prepaid ) {
180   $billed_or_prepaid = 'billed';
181   $last_bill_or_renewed = 'Last&nbsp;bill';
182   $next_bill_or_prepaid_until = 'Next&nbsp;bill';
183 } else {
184   $billed_or_prepaid = 'prepaid';
185   $last_bill_or_renewed = 'Renewed';
186   $next_bill_or_prepaid_until = 'Prepaid&nbsp;until';
187 }
188
189 #subroutines
190
191 sub myfreq {
192   my $part_pkg = shift;
193   my $freq = $part_pkg->freq_pretty;
194   $freq =~ s/ /&nbsp;/g;
195   $freq;
196 }
197
198 #false laziness w/package.html
199 sub pkg_link {
200   my($action, $label, $cust_pkg) = @_;
201   return '' unless $cust_pkg;
202   qq!<a href="$p$action.cgi?!. $cust_pkg->pkgnum. qq!">$label</a>!;
203 }
204
205 sub pkg_status_row {
206   my( $cust_pkg, $title, $field, %opt ) = @_;
207
208   my $color = $opt{'color'};
209
210   my $html = qq(<TR><TD WIDTH="<%$width%>" ALIGN="right">);
211   $html   .= qq(<FONT COLOR="#$color"><B>) if length($color);
212   $html   .= qq($title&nbsp;);
213   $html   .= qq(</B></FONT>) if length($color);
214   $html   .= qq(</TD>);
215   $html   .= pkg_datestr($cust_pkg, $field, %opt).'</TR>';
216
217   $html;
218 }
219
220 sub pkg_status_row_if {
221   my( $cust_pkg, $title, $field, %opt ) = @_;
222   
223   $title = '<FONT SIZE=-1>(&nbsp;'. pkg_unadjourn_link($cust_pkg). '&nbsp;)&nbsp;</FONT>'. $title
224     if ( $field eq 'adjourn' &&
225          $opt{curuser}->access_right('Suspend customer package later')
226        );
227
228   $title = '<FONT SIZE=-1>(&nbsp;'. pkg_unexpire_link($cust_pkg). '&nbsp;)&nbsp;</FONT>'. $title
229     if ( $field eq 'expire' &&
230          $opt{curuser}->access_right('Cancel customer package later')
231        );
232
233   $cust_pkg->get($field) ? pkg_status_row($cust_pkg, $title, $field, %opt) : '';
234 }
235
236 sub pkg_status_row_changed {
237   my( $cust_pkg, %opt ) = @_;
238   return '' unless $cust_pkg->change_date;
239   my $html = pkg_status_row( $cust_pkg, 'Package&nbsp;changed', 'change_date', %opt );
240   my $old = $cust_pkg->old_cust_pkg;
241   if ( $old ) {
242     my $part_pkg = $old->part_pkg;
243     my $label = 'Changed from '. $cust_pkg->change_pkgnum. ': '.
244                 $part_pkg->pkg. ' - '. $part_pkg->comment;
245     $html .= pkg_status_row_colspan( $label, '', size=>'-1', align=>'right' );
246   }
247   $html;
248 }
249
250 sub pkg_status_row_colspan {
251   my($title, $addl, %opt) = @_;
252
253   my $align = $opt{'align'} ? 'ALIGN="'. $opt{'align'}.'"' : '';
254   my $color = $opt{'color'} ? 'COLOR="#'.$opt{'color'}.'"' : '';
255   my $size  = $opt{'size'}  ? 'SIZE="'.  $opt{'size'}. '"' : '';
256
257   my $html = qq(<TR><TD COLSPAN=$colspan $align>);
258   $html   .= qq(<FONT $color $size>) if length($color) || $size;
259   $html   .= qq(<B>) if $color && !$size;
260   $html   .= $title;
261   $html   .= qq(</B>) if $color && !$size;
262   $html   .= qq(</FONT>) if length($color) || $size;
263   $html   .= ",&nbsp;$addl" if length($addl);
264   $html   .= qq(</TD></TR>);
265
266   $html;
267
268 }
269
270 sub pkg_datestr {
271   my($cust_pkg, $field, %opt) = @_ or return '';
272   return '&nbsp;' unless $cust_pkg->get($field);
273   my $format = '<TD align="left"><B>%b</B></TD>'.
274                '<TD align="right"><B>&nbsp;%o,</B></TD>'.
275                '<TD align="right"><B>&nbsp;%Y</B></TD>';
276   #$format .= '&nbsp;<FONT SIZE=-3>%l:%M:%S%P&nbsp;%z</FONT>'
277   $format .= '<TD ALIGN="right"><B>&nbsp;%l</TD>'.
278              '<TD ALIGN="center"><B>:</B></TD>'.
279              '<TD ALIGN="left"><B>%M</B></TD>'.
280              '<TD ALIGN="left"><B>&nbsp;%P</B></TD>'
281     if $opt{'cust_pkg-display_times'};
282   my $strip = time2str($format, $cust_pkg->get($field) );
283   $strip =~ s/ (\d)/$1/g;
284   $strip;
285 }
286
287 sub pkg_suspend_link {
288   include( '/elements/popup_link-cust_pkg.html',
289              'action'      => $p. 'misc/cancel_pkg.html?method=suspend',
290              'label'       => 'Suspend&nbsp;now',
291              'actionlabel' => 'Suspend',
292              'color'       => '#FF9900',
293              'cust_pkg'    => shift,
294          )
295 }
296
297 sub pkg_adjourn_link {
298   include( '/elements/popup_link-cust_pkg.html',
299              'action'      => $p. 'misc/cancel_pkg.html?method=adjourn',
300              'label'       => 'Suspend&nbsp;later',
301              'actionlabel' => 'Adjourn',
302              'color'       => '#CC6600',
303              'cust_pkg'    => shift,
304          )
305 }
306
307 sub pkg_delay_link  {
308   include( '/elements/popup_link-cust_pkg.html',
309              'action'      => $p. 'misc/delay_susp_pkg.html',
310              'label'       => 'Delay&nbsp;suspend',
311              'actionlabel' => 'Delay suspend for',
312              'cust_pkg'    => shift,
313          )
314 }
315
316 sub pkg_unsuspend_link { pkg_link('misc/unsusp_pkg',    'Unsuspend', @_ ); }
317 sub pkg_unadjourn_link { pkg_link('misc/unadjourn_pkg', 'Abort',     @_ ); }
318 sub pkg_unexpire_link  { pkg_link('misc/unexpire_pkg',  'Abort',     @_ ); }
319
320 sub pkg_cancel_link {
321   include( '/elements/popup_link-cust_pkg.html',
322              'action'      => $p. 'misc/cancel_pkg.html?method=cancel',
323              'label'       => 'Cancel&nbsp;now',
324              'actionlabel' => 'Cancel',
325              'color'       => '#ff0000',
326              'cust_pkg'    => shift,
327          )
328 }
329
330 sub pkg_expire_link {
331   include( '/elements/popup_link-cust_pkg.html',
332              'action'      => $p. 'misc/cancel_pkg.html?method=expire',
333              'label'       => 'Cancel&nbsp;later',
334              'actionlabel' => 'Expire', #"Cancel package $num later"
335              'color'       => '#CC0000',
336              'cust_pkg'    => shift,
337          )
338 }
339
340 sub svc_recharge_link {
341   include( '/elements/popup_link-cust_svc.html',
342              'action'      => $p. 'misc/recharge_svc.html',
343              'label'       => 'Recharge',
344              'actionlabel' => 'Recharge',
345              'color'       => '#333399',
346              'cust_svc'    => shift,
347          )
348 }
349
350 sub pkg_autosuspend_time {
351   my $cust_pkg = shift or return '';
352   my $days = 7;
353   my $time = time;
354   my $pending_suspend = 0;
355   #this seems to be extremely inefficient...
356   while ( $days > 0 &&
357           scalar(
358             grep { $_->part_event->action eq 'suspend' }
359             @{$cust_pkg->cust_main->due_cust_event( time => $time + 86400*$days,
360                                                     testonly => 1,
361                                                   ) }
362           )
363         )
364   {
365     $pending_suspend = 1;
366     $days--;
367   }
368
369   $pending_suspend ? time + ($days + 1) * 86400 : '';
370
371 }
372
373 </%init>