Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / view / cust_main / packages / package.html
1 <TD CLASS="inv package" BGCOLOR="<% $bgcolor %>" VALIGN="top">
2   <% join('', @marker ) %>
3   <TABLE CLASS="inv package"> 
4     <TR>
5       <TD COLSPAN=2>
6         <% $opt{before_pkg_callback}
7              ? &{ $opt{before_pkg_callback} }( $cust_pkg )
8              : ''
9         %>
10         <A NAME="cust_pkg<% $cust_pkg->pkgnum %>"
11            ID  ="cust_pkg<% $cust_pkg->pkgnum %>"
12         ><% $opt{show_pkgnum} ? $cust_pkg->pkgnum.': ' : '' %><B><% $part_pkg->pkg |h %></B></A>
13 %
14 %       my $custom_comment;
15 %       if ( 0 && FS::part_pkg::flat->can('price_info') eq $part_pkg->can('price_info') ) {
16 %         #perf hack / disabled in 4.x (feature pricing / cust_pkg_usageprice incompatible, well, harder)
17 %
18 %         $part_pkg->{"_$_"} = $part_pkg->option($_) || 0
19 %           foreach grep !defined($part_pkg->{"_$_"} ), qw(setup_fee recur_fee);
20 %           
21 %         my $str = '';
22 %         $str = $opt{money_char} . $part_pkg->{_setup_fee}.
23 %                ($part_pkg->{_recur_fee} ? ' setup' : ' one-time')
24 %           if $part_pkg->{_setup_fee};
25 %         $str .= ', ' if $part_pkg->{_setup_fee} && $part_pkg->{_recur_fee};
26 %         $str .= $opt{money_char}. $part_pkg->{_recur_fee}.
27 %                 '/'. $part_pkg->freq_pretty
28 %           if $part_pkg->{_recur_fee};
29 %         $str;
30 %
31 %         $custom_comment = 
32 %           ( $part_pkg->custom ? '(CUSTOM) ' : '' ).
33 %           $part_pkg->comment.
34 %           ( ($part_pkg->custom || $part_pkg->comment) ? ' - ' : '' ).
35 %           ($str || 'No charge');
36 %
37 %       } else {
38 %         $custom_comment = $part_pkg->custom_comment('cust_pkg'=>$cust_pkg);
39 %       }
40         <% $custom_comment ? ' - ' : '' %>
41         <% $custom_comment |h %>
42       </TD>
43     </TR>
44
45
46     <TR>
47       <TD COLSPAN=2>
48         <FONT SIZE=-1>
49
50 %         if ( $part_pkg->freq eq '0' and !$opt{no_links} ) {
51 %           # One-time charge.  Nothing you can do with this, unless:
52 %           if ( $curuser->access_right('Modify one-time charge') ) {
53                 (&nbsp;<%onetime_change_link($cust_pkg)%>&nbsp;)
54 %           }
55 %           # also, you can discount it
56 %           if ( $curuser->access_right('Discount customer package')
57 %                && ! scalar($cust_pkg->cust_pkg_discount_active)
58 %                && ! scalar($cust_pkg->part_pkg->part_pkg_discount)
59 %              ) {
60               (&nbsp;<%pkg_discount_link($cust_pkg)%>&nbsp;)
61 %           }
62           <BR>
63 %
64 %         } elsif ( !$cust_pkg->get('cancel') and !$opt{no_links} ) {
65 %
66 %           if ( $change_from ) {
67 %             # This is the target package for a future change.
68 %             # Nothing you can do with it besides modify/cancel the 
69 %             # future change, and that's on the current package.
70 %           } elsif ( $supplemental ) {
71 %             # Supplemental packages can't be changed independently.
72 %             # Show only "Add comments" and "Add invoice details".
73 %           } else {
74 %             # the usual case: links to change package definition,
75 %             # discount, and customization
76 %             my $br = 0;
77 %             if ( $curuser->access_right('Change customer package') ) {
78 %               $br=1;
79                 (&nbsp;<%pkg_change_link($cust_pkg)%>&nbsp;)
80 %             } 
81 %
82 %             if ( $curuser->access_right('Discount customer package')
83 %                  && $part_pkg->can_discount
84 %                  && ! scalar( @{ $cust_pkg->{_cust_pkg_discount_active} } )
85 %                  && (    ! $opt{'term_discounts'}
86 %                       || ! scalar($cust_pkg->part_pkg->part_pkg_discount)
87 %                     )
88 %                )
89 %             {
90 %               $br=1;
91                 (&nbsp;<%pkg_discount_link($cust_pkg)%>&nbsp;)
92 %             }
93 %
94 %             if ( $curuser->access_right('Customize customer package') ) {
95 %               $br=1;
96                 (&nbsp;<%pkg_customize_link($cust_pkg,$part_pkg)%>&nbsp;)
97 %             } 
98 %
99               <% $br ? '<BR>' : '' %>
100 %           } 
101
102 %           if (    (    $curuser->access_right('Billing event reports')
103 %                     || $curuser->access_right('View customer billing events')
104 %                   )
105 %                && $cust_pkg->exists_cust_event
106 %              ) {
107               (&nbsp;<%pkg_event_link($cust_pkg)%>&nbsp;)
108 %           }
109 %         } # a canceled recurring package, or else no_links is in effect
110
111         </FONT>
112       </TD>
113     </TR>
114
115
116     <TR>
117       <TD COLSPAN=2>
118
119 %       my $change_quan_label = 'Change quantity';
120 %       if ( $cust_pkg->quantity > 1 ) {
121 %         $change_quan_label = 'change';
122           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<% mt('Quantity:') |h %> 
123           <B><% $cust_pkg->quantity %></B>
124 %       }
125
126 %       if ( $curuser->access_right('Change customer package')
127 %              && ! $cust_pkg->get('cancel')
128 %              && ! $supplemental
129 %              && $part_pkg->freq ne '0'
130 %              && ! $opt{no_links}
131 %              && $opt{'invoice-unitprice'}
132 %          )
133 %       {
134           <FONT SIZE="-1">
135             (&nbsp;<% pkg_change_quantity_link($cust_pkg, $change_quan_label) %>&nbsp;)
136           </FONT>
137 %       }
138
139       </TD>
140     </TR>
141
142
143     <TR>
144       <TD COLSPAN=2>
145
146 %       my $change_sales_label = 'Change sales person';
147 %       if ( $cust_pkg->salesnum ) {
148 %         $change_sales_label = 'change';
149           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<% mt('Sales Person:') |h %> 
150           <B><% $cust_pkg->salesperson |h %></B>
151 %       }
152
153 %       if ( $curuser->access_right('Change customer package')
154 %              && ! $cust_pkg->get('cancel')
155 %              && ! $supplemental
156 %              #&& $part_pkg->freq ne '0'
157 %              && ! $opt{no_links}
158 %          )
159 %       {
160         <FONT SIZE="-1">
161           (&nbsp;<% pkg_change_salesnum_link($cust_pkg, $change_sales_label) %>&nbsp;)
162         </FONT>
163 %     }
164
165       </TD>
166     </TR>
167
168
169 %   my $editi = $curuser->access_right('Edit customer package invoice details');
170 %   my $editc = $curuser->access_right('Edit customer package comments');
171 %   my @cust_pkg_detail = $cust_pkg->cust_pkg_detail;
172 %   my @invoice_detail = grep { $_->detailtype eq 'I' } @cust_pkg_detail;
173 %   my @comments       = grep { $_->detailtype eq 'C' } @cust_pkg_detail;
174 %
175 %   if ( scalar(@invoice_detail) || scalar(@comments) || $editi || $editc ) {
176 %
177 %     my $editlink = $p. 'edit/cust_pkg_detail.html?pkgnum='. $cust_pkg->pkgnum.
178 %                    ';detailtype=';
179
180       <TR>
181
182 %       if ( @invoice_detail ) {
183           <TD VALIGN="top">
184             <& /elements/table-grid.html &>
185               <TR>
186                 <TH BGCOLOR="#dddddd" STYLE="border-bottom: dashed 1px black; padding-bottom: 1px">
187                   <FONT SIZE="-1">
188                     <% mt('Invoice details') |h %> 
189 %                   if ( $editi && ! $cust_pkg->get('cancel') && ! $opt{no_links} ) {
190                       (<& /elements/popup_link.html, { 
191                                     'action'      => $editlink. 'I',
192                                     'label'       => emt('edit'),
193                                     'actionlabel' => emt('Edit invoice details'),
194                                     'color'       => '#333399',
195                                     'width'       => 763,
196                                  }
197                        &>)
198 %                   }
199                   </FONT>
200                 </TH>
201               </TR>
202 %             foreach my $cust_pkg_detail ( @invoice_detail ) {
203                 <TR>
204                   <TD><FONT SIZE="-1">&nbsp;-&nbsp;<% $cust_pkg_detail->detail |h %></FONT></TD>
205                 </TR>
206 %             }
207             </TABLE>
208           </TD>
209 %       } else {
210           <TD>
211 %           if ( $editi && ! $cust_pkg->get('cancel') && ! $opt{no_links} ) {
212               <FONT SIZE="-1">
213                 (&nbsp;<% include('/elements/popup_link.html', { 
214                                'action'      => $editlink. 'I',
215                                'label'       => emt('Add invoice details'),
216                                'actionlabel' => emt('Add invoice details'),
217                                'color'       => '#333399',
218                                'width'       => 763,
219                             })
220                   %>&nbsp;)
221               </FONT>
222 %           }
223           </TD>
224 %       }
225
226 %       if ( @comments ) { 
227           <TD VALIGN="top">
228             <& /elements/table-grid.html &>
229               <TR>
230                 <TH BGCOLOR="#dddddd" STYLE="border-bottom: dashed 1px black; padding-bottom: 1px">
231                   <FONT SIZE="-1">
232                     <% mt('Comments') |h %> 
233 %                   if ( $editc && ! $opt{no_links} ) {
234                       (<& /elements/popup_link.html, { 
235                                     'action'      => $editlink. 'C',
236                                     'label'       => emt('edit'),
237                                     'actionlabel' => emt('Edit comments'),
238                                     'color'       => '#333399',
239                                     'width'       => 763,
240                                  }
241                        &>)
242 %                   }
243                   </FONT>
244                 </TH>
245               </TR>
246 %             foreach my $cust_pkg_detail ( @comments ) {
247                 <TR>
248                   <TD><FONT SIZE="-1">&nbsp;-&nbsp;<% $cust_pkg_detail->detail |h %></FONT></TD>
249                 </TR>
250 %             }
251             </TABLE>
252           </TD>
253 %       } else {
254           <TD>
255 %           if ( $editc && ! $opt{no_links} ) {
256               <FONT SIZE="-1">
257                 (&nbsp;<& /elements/popup_link.html, { 
258                                'action'      => $editlink. 'C',
259                                'label'       => emt('Add comments'),
260                                'actionlabel' => emt('Add comments'),
261                                'color'       => '#333399',
262                                'width'       => 763,
263                             }
264                   &>&nbsp;)
265               </FONT>
266 %           }
267           </TD>
268 %       }
269
270       </TR>
271
272
273 %   }
274   </TABLE>
275
276 % if ( @cust_pkg_usage ) {
277   <TABLE CLASS="usage inv">
278     <TR><TH COLSPAN=4><% mt('Included usage') %></TH></TR>
279 %   foreach my $usage (@cust_pkg_usage) {
280 %     my $part = $usage->part_pkg_usage;
281 %     my $ratio = 255 * ($usage->minutes / $part->minutes);
282 %     $ratio = 255 if $ratio > 255; # because rollover
283 %     my $color = sprintf('STYLE="font-weight: bold; color: #%02x%02x00"', 255 - $ratio, $ratio);
284 %     my $trstyle = '';
285 %     $trstyle = ' CLASS="shared"' if $part->shared;
286     <TR<%$trstyle%>>
287       <TD ALIGN="right"><% $part->description %>: </TD>
288       <TD <%$color%> ALIGN="right"><% sprintf('%.1f', $usage->minutes) %></TD>
289       <TD <%$color%>> / </TD>
290       <TD <%$color%>><% $part->minutes %></TD>
291 %     if ( $part->shared ) {
292       <TD><I>(shared)</I></TD>
293 %     }
294     </TR>
295 %   }
296   </TABLE>
297 % }
298
299   <% join('', map '</DIV>', @marker ) %>
300 </TD>
301
302 <%init>
303
304 my %opt = @_;
305
306 my $bgcolor  = $opt{'bgcolor'};
307 my $cust_pkg = $opt{'cust_pkg'};
308 my $part_pkg = $opt{'part_pkg'};
309
310 my $curuser = $FS::CurrentUser::CurrentUser;
311
312 my $countrydefault = $opt{'countrydefault'} || 'US';
313 my $statedefault   = $opt{'statedefault'}
314                      || ($countrydefault eq 'US' ? 'CA' : '');
315
316 # put a marker on the left edge of this column
317 # if this package is somehow special
318 my $supplemental = $opt{'supplemental'} || 0;
319 my $change_from = $opt{'change_from'} || 0;
320 my @marker;
321 if ( $supplemental ) {
322   push @marker, '<DIV CLASS="package-marker-supplemental">';
323 }
324 if ( $change_from ) {
325   push @marker, '<DIV CLASS="package-marker-change_from">';
326 }
327
328 $cust_pkg->pkgnum =~ /^(\d+)$/;
329 my $pkgnum = $1;
330 my @cust_pkg_usage = qsearch({
331   'select'    => 'cust_pkg_usage.*',
332   'table'     => 'cust_pkg_usage',
333   'addl_from' => ' JOIN part_pkg_usage USING (pkgusagepart)',
334   'extra_sql' => " WHERE pkgnum = $1",
335   'order_by'  => ' ORDER BY priority ASC, description ASC',
336 });
337
338 #subroutines
339
340 #false laziness w/status.html
341 sub pkg_link {
342   my($action, $label, $cust_pkg) = @_;
343   return '' unless $cust_pkg;
344   qq!<a href="$p$action.cgi?!. $cust_pkg->pkgnum. qq!">$label</a>!;
345 }
346
347 sub pkg_change_link {
348   my $cust_pkg = shift;
349   my $locationnum = $cust_pkg->locationnum;
350   include( '/elements/popup_link-cust_pkg.html',
351     'action'      => $p. "misc/change_pkg.cgi?locationnum=$locationnum",
352     'label'       => emt('Change package'),
353     'actionlabel' => emt('Change'),
354     'cust_pkg'    => $cust_pkg,
355     'width'       => 960,
356     'height'      => 538,
357   );
358 }
359
360 sub onetime_change_link {
361   my $cust_pkg = shift;
362   my $pkgnum = $cust_pkg->pkgnum;
363   include( '/elements/popup_link-cust_pkg.html',
364     'action'      => $p. "edit/quick-charge.html?change_pkgnum=$pkgnum",
365     'label'       => emt('Modify one-time charge'),
366     'actionlabel' => emt('Modify'),
367     'cust_pkg'    => $cust_pkg,
368     'width'       => 690,
369     'height'      => 440,
370   );
371 }
372
373 sub pkg_change_location_link {
374   my $cust_pkg = shift;
375   my $pkgpart = $cust_pkg->pkgpart;
376   include( '/elements/popup_link-cust_pkg.html',
377     'action'      => $p. "misc/change_pkg.cgi?locationnum=-1;pkgpart=$pkgpart;".
378                      "address1=;address2=;city=;county=;state=$statedefault;".
379                      "zip=;country=$countrydefault",
380     'label'       => emt('Change location'),
381     'actionlabel' => emt('Change'),
382     'cust_pkg'    => $cust_pkg,
383     'width'       => 960,
384     'height'      => 490,
385   );
386 }
387
388 sub pkg_change_quantity_link {
389   my( $cust_pkg, $label ) = @_;
390   include( '/elements/popup_link-cust_pkg.html',
391     'action'      => $p. 'edit/cust_pkg_quantity.html?',
392     'label'       => emt($label),
393     'actionlabel' => emt('Change'),
394     'cust_pkg'    => $cust_pkg,
395     'width'       => 390,
396     'height'      => 220,
397   );
398 }
399
400 sub pkg_change_salesnum_link {
401   my( $cust_pkg, $label ) = @_;
402   include( '/elements/popup_link-cust_pkg.html',
403     'action'      => $p. 'edit/cust_pkg_salesnum.html?',
404     'label'       => emt($label),
405     'actionlabel' => emt('Change'),
406     'cust_pkg'    => $cust_pkg,
407     'width'       => 390,
408     'height'      => 220,
409   );
410 }
411
412 sub pkg_discount_link {
413   my $cust_pkg = shift or return '';
414   include( '/elements/popup_link-cust_pkg.html',
415     'action'      => $p.'edit/cust_pkg_discount.html',
416     'label'       => emt('Discount'),
417     'actionlabel' => emt('Discount'),
418     'cust_pkg'    => $cust_pkg,
419     'width'       => 616,
420   );
421 }
422
423 sub pkg_customize_link {
424   my $cust_pkg = shift or return '';
425   my $part_pkg = shift;
426   my $custnum = $cust_pkg->custnum;
427   qq!<A HREF="${p}edit/part_pkg.cgi?!.
428     "clone=". $part_pkg->pkgpart. ';'.
429     "pkgnum=". $cust_pkg->pkgnum.
430     qq!">!.emt('Customize').'</A>';
431 }
432
433 sub pkg_event_link {
434   my($cust_pkg) = @_;
435   qq!<a href="${p}search/cust_event.html?pkgnum=!. $cust_pkg->pkgnum. qq!">!.
436   emt('View package events').
437   '</a>';
438 }
439
440 </%init>