c6cbb81a3ea263dadb58f76b4178928d165e4e2f
[freeside.git] / httemplate / browse / part_pkg.cgi
1 <% include( 'elements/browse.html',
2                  'title'                 => 'Package Definitions',
3                  'html_init'             => $html_init,
4                  'html_posttotal'        => $html_posttotal,
5                  'name'                  => 'package definitions',
6                  'disableable'           => 1,
7                  'disabled_statuspos'    => 4,
8                  'agent_virt'            => 1,
9                  'agent_null_right'      => [ $edit, $edit_global ],
10                  'agent_null_right_link' => $edit_global,
11                  'agent_pos'             => 6,
12                  'query'                 => { 'select'    => $select,
13                                               'table'     => 'part_pkg',
14                                               'hashref'   => \%hash,
15                                               'extra_sql' => $extra_sql,
16                                               'order_by'  => "ORDER BY $orderby"
17                                             },
18                  'count_query'           => $count_query,
19                  'header'                => \@header,
20                  'fields'                => \@fields,
21                  'links'                 => \@links,
22                  'align'                 => $align,
23              )
24 %>
25 <%init>
26
27 my $curuser = $FS::CurrentUser::CurrentUser;
28
29 my $edit        = 'Edit package definitions';
30 my $edit_global = 'Edit global package definitions';
31 my $acl_edit        = $curuser->access_right($edit);
32 my $acl_edit_global = $curuser->access_right($edit_global);
33 my $acl_config      = $curuser->access_right('Configuration'); #to edit services
34                                                                #and agent types
35
36 die "access denied"
37   unless $acl_edit || $acl_edit_global;
38
39 my $conf = new FS::Conf;
40 my $taxclasses = $conf->exists('enable_taxclasses');
41 my $money_char = $conf->config('money_char') || '$';
42
43 my $select = '*';
44 my $orderby = 'pkgpart';
45 my %hash = ();
46 my $extra_count = '';
47
48 if ( $cgi->param('active') ) {
49   $orderby = 'num_active DESC';
50 }
51
52 my @where = ();
53
54 #if ( $cgi->param('activeONLY') ) {
55 #  push @where, ' WHERE num_active > 0 '; #XXX doesn't affect count...
56 #}
57
58 if ( $cgi->param('recurring') ) {
59   $hash{'freq'} = { op=>'!=', value=>'0' };
60   $extra_count = " freq != '0' ";
61 }
62
63 my $classnum = '';
64 if ( $cgi->param('classnum') =~ /^(\d+)$/ ) {
65   $classnum = $1;
66   push @where, $classnum ? "classnum =  $classnum"
67                          : "classnum IS NULL";
68 }
69 $cgi->delete('classnum');
70
71 if ( $cgi->param('missing_recur_fee') ) {
72   push @where, "0 = ( SELECT COUNT(*) FROM part_pkg_option
73                         WHERE optionname = 'recur_fee'
74                           AND part_pkg_option.pkgpart = part_pkg.pkgpart
75                           AND CAST ( optionvalue AS NUMERIC ) > 0
76                     )";
77 }
78
79 push @where, FS::part_pkg->curuser_pkgs_sql
80   unless $acl_edit_global;
81
82 my $extra_sql = scalar(@where)
83                 ? ( scalar(keys %hash) ? ' AND ' : ' WHERE ' ).
84                   join( 'AND ', @where)
85                 : '';
86
87 my $agentnums = join(',', $curuser->agentnums);
88 my $count_cust_pkg = "
89   SELECT COUNT(*) FROM cust_pkg LEFT JOIN cust_main USING ( custnum )
90     WHERE cust_pkg.pkgpart = part_pkg.pkgpart
91       AND cust_main.agentnum IN ($agentnums)
92 ";
93
94 $select = "
95
96   *,
97
98   ( $count_cust_pkg
99       AND ( cancel IS NULL OR cancel = 0 )
100       AND ( susp IS NULL OR susp = 0 )
101   ) AS num_active,
102
103   ( $count_cust_pkg
104       AND ( cancel IS NULL OR cancel = 0 )
105       AND susp IS NOT NULL AND susp != 0
106   ) AS num_suspended,
107
108   ( $count_cust_pkg
109       AND cancel IS NOT NULL AND cancel != 0
110   ) AS num_cancelled
111
112 ";
113
114 my $html_init;
115 #unless ( $cgi->param('active') ) {
116   $html_init = qq!
117     One or more service definitions are grouped together into a package 
118     definition and given pricing information.  Customers purchase packages
119     rather than purchase services directly.<BR><BR>
120     <FORM METHOD="POST" ACTION="${p}edit/part_pkg.cgi">
121     <A HREF="${p}edit/part_pkg.cgi"><I>Add a new package definition</I></A>
122     or
123     !.include('/elements/select-part_pkg.html', 'element_name' => 'clone' ). qq!
124     <INPUT TYPE="submit" VALUE="Clone existing package">
125     </FORM>
126     <BR><BR>
127   !;
128 #}
129
130 $cgi->param('dummy', 1);
131
132 my $filter_change =
133   qq(\n<SCRIPT TYPE="text/javascript">\n).
134   "function filter_change() {".
135   "  window.location = '". $cgi->self_url.
136        ";classnum=' + document.getElementById('classnum').options[document.getElementById('classnum').selectedIndex].value".
137   "}".
138   "\n</SCRIPT>\n";
139
140 #restore this so pagination works
141 $cgi->param('classnum', $classnum) if length($classnum);
142
143 my $html_posttotal =
144   "$filter_change\n<BR>( show class: ".
145   include('/elements/select-pkg_class.html',
146             #'curr_value'    => $classnum,
147             'value'         => $classnum, #insist on 0 :/
148             'onchange'      => 'filter_change()',
149             'pre_options'   => [ '-1' => 'all',
150                                  '0'  => '(none)', ],
151             'disable_empty' => 1,
152          ).
153   ' )';
154
155 my $recur_toggle = $cgi->param('recurring') ? 'show' : 'hide';
156 $cgi->param('recurring', $cgi->param('recurring') ^ 1 );
157
158 $html_posttotal .=
159   '( <A HREF="'. $cgi->self_url.'">'. "$recur_toggle one-time charges</A> )";
160
161 $cgi->param('recurring', $cgi->param('recurring') ^ 1 ); #put it back
162
163 # ------
164
165 my $link = [ $p.'edit/part_pkg.cgi?', 'pkgpart' ];
166
167 my @header = ( '#', 'Package', 'Comment', 'Custom' );
168 my @fields = ( 'pkgpart', 'pkg', 'comment',
169                sub{ '<B><FONT COLOR="#0000CC">'.$_[0]->custom.'</FONT></B>' }
170              );
171 my $align = 'rllc';
172 my @links = ( $link, $link, '', '' );
173
174 unless ( 0 ) { #already showing only one class or something?
175   push @header, 'Class';
176   push @fields, sub { shift->classname || '(none)'; };
177   $align .= 'l';
178 }
179
180 tie my %plans, 'Tie::IxHash', %{ FS::part_pkg::plan_info() };
181
182 tie my %plan_labels, 'Tie::IxHash',
183   map {  $_ => ( $plans{$_}->{'shortname'} || $plans{$_}->{'name'} ) }
184       keys %plans;
185
186 push @header, 'Pricing';
187 $align .= 'r'; #?
188 push @fields, sub {
189   my $part_pkg = shift;
190   (my $plan = $plan_labels{$part_pkg->plan} ) =~ s/ /&nbsp;/g;
191   my $is_recur = ( $part_pkg->freq ne '0' );
192
193   [
194     [
195       { data =>$plan,
196         align=>'center',
197         colspan=>2,
198       },
199     ],
200     [
201       { data =>$money_char.
202                sprintf('%.2f', $part_pkg->option('setup_fee') ),
203         align=>'right'
204       },
205       { data => ( $is_recur ? ' setup' : ' one-time' ),
206         align=>'left',
207       },
208     ],
209     [
210       { data=>( $is_recur
211                   ? $money_char.sprintf('%.2f ', $part_pkg->option('recur_fee') )
212                   : $part_pkg->freq_pretty
213               ),
214         align=> ( $is_recur ? 'right' : 'center' ),
215         colspan=> ( $is_recur ? 1 : 2 ),
216       },
217       ( $is_recur
218         ?  { data => ( $is_recur ? $part_pkg->freq_pretty : '' ),
219              align=>'left',
220            }
221         : ()
222       ),
223     ],
224     ( map { 
225             my $dst_pkg = $_->dst_pkg;
226             [ 
227               { data => 'Add-on:&nbsp;'.$dst_pkg->pkg_comment,
228                 align=>'center', #?
229                 colspan=>2,
230               }
231             ]
232           }
233       $part_pkg->bill_part_pkg_link
234     ),
235   ];
236
237 #  $plan_labels{$part_pkg->plan}.'<BR>'.
238 #    $money_char.sprintf('%.2f setup<BR>', $part_pkg->option('setup_fee') ).
239 #    ( $part_pkg->freq ne '0'
240 #      ? $money_char.sprintf('%.2f ', $part_pkg->option('recur_fee') )
241 #      : ''
242 #    ).
243 #    $part_pkg->freq_pretty; #.'<BR>'
244 };
245
246 ###
247 # Agent goes here if displayed
248 ###
249
250 #agent type
251 if ( $acl_edit_global ) {
252   #really we just want a count, but this is fine unless someone has tons
253   my @all_agent_types = map {$_->typenum} qsearch('agent_type',{});
254   if ( scalar(@all_agent_types) > 1 ) {
255     push @header, 'Agent types';
256     my $typelink = $p. 'edit/agent_type.cgi?';
257     push @fields, sub { my $part_pkg = shift;
258                         [
259                           map { my $agent_type = $_->agent_type;
260                                 [ 
261                                   { 'data'  => $agent_type->atype, #escape?
262                                     'align' => 'left',
263                                     'link'  => ( $acl_config
264                                                    ? $typelink.
265                                                      $agent_type->typenum
266                                                    : ''
267                                                ),
268                                   },
269                                 ];
270                               }
271                               $part_pkg->type_pkgs
272                         ];
273                       };
274     $align .= 'l';
275   }
276 }
277
278 #if ( $cgi->param('active') ) {
279   push @header, 'Customer<BR>packages';
280   my %col = (
281     'active'          => '00CC00',
282     'suspended'       => 'FF9900',
283     'cancelled'       => 'FF0000',
284     #'one-time charge' => '000000',
285     'charge'          => '000000',
286   );
287   my $cust_pkg_link = $p. 'search/cust_pkg.cgi?pkgpart=';
288   push @fields, sub { my $part_pkg = shift;
289                       [
290                         map {
291                               my $magic = $_;
292                               my $label = $_;
293                               if ( $magic eq 'active' && $part_pkg->freq == 0 ) {
294                                 $magic = 'inactive';
295                                 #$label = 'one-time charge',
296                                 $label = 'charge',
297                               }
298                           
299                               [
300                                 {
301                                  'data'  => '<B><FONT COLOR="#'. $col{$label}. '">'.
302                                             $part_pkg->get("num_$_").
303                                             '</FONT></B>',
304                                  'align' => 'right',
305                                 },
306                                 {
307                                  'data'  => $label.
308                                               ( $part_pkg->get("num_$_") != 1
309                                                 && $label =~ /charge$/
310                                                   ? 's'
311                                                   : ''
312                                               ),
313                                  'align' => 'left',
314                                  'link'  => ( $part_pkg->get("num_$_")
315                                                 ? $cust_pkg_link.
316                                                   $part_pkg->pkgpart.
317                                                   ";magic=$magic"
318                                                 : ''
319                                             ),
320                                 },
321                               ],
322                             } (qw( active suspended cancelled ))
323                       ]; };
324   $align .= 'r';
325 #}
326
327 if ( $taxclasses ) {
328   push @header, 'Taxclass';
329   push @fields, sub { shift->taxclass() || '&nbsp;'; };
330   $align .= 'l';
331 }
332
333 push @header, 'Plan options',
334               'Services';
335               #'Service', 'Quan', 'Primary';
336
337 push @fields, 
338               sub {
339                     my $part_pkg = shift;
340                     if ( $part_pkg->plan ) {
341
342                       my %options = $part_pkg->options;
343
344                       [ map { 
345                               [
346                                 { 'data'  => $_,
347                                   'align' => 'right',
348                                 },
349                                 { 'data'  => $part_pkg->format($_,$options{$_}),
350                                   'align' => 'left',
351                                 },
352                               ];
353                             }
354                         grep { $options{$_} =~ /\S/ } 
355                         grep { $_ !~ /^(setup|recur)_fee$/ }
356                         keys %options
357                       ];
358
359                     } else {
360
361                       [ map { [
362                                 { 'data'  => uc($_),
363                                   'align' => 'right',
364                                 },
365                                 {
366                                   'data'  => $part_pkg->$_(),
367                                   'align' => 'left',
368                                 },
369                               ];
370                             }
371                         (qw(setup recur))
372                       ];
373
374                     }
375
376                   },
377
378               sub {
379                     my $part_pkg = shift;
380
381                     [ 
382                       (map {
383                              my $pkg_svc = $_;
384                              my $part_svc = $pkg_svc->part_svc;
385                              my $svc = $part_svc->svc;
386                              if ( $pkg_svc->primary_svc =~ /^Y/i ) {
387                                $svc = "<B>$svc (PRIMARY)</B>";
388                              }
389                              $svc =~ s/ +/&nbsp;/g;
390
391                              [
392                                {
393                                  'data'  => '<B>'. $pkg_svc->quantity. '</B>',
394                                  'align' => 'right'
395                                },
396                                {
397                                  'data'  => $svc,
398                                  'align' => 'left',
399                                  'link'  => ( $acl_config
400                                                 ? $p. 'edit/part_svc.cgi?'.
401                                                   $part_svc->svcpart
402                                                 : ''
403                                             ),
404                                },
405                              ];
406                            }
407                       sort {     $b->primary_svc =~ /^Y/i
408                              <=> $a->primary_svc =~ /^Y/i
409                            }
410                            $part_pkg->pkg_svc('disable_linked'=>1)
411                       ),
412                       ( map { 
413                               my $dst_pkg = $_->dst_pkg;
414                               [
415                                 { data => 'Add-on:&nbsp;'.$dst_pkg->pkg_comment,
416                                   align=>'center', #?
417                                   colspan=>2,
418                                 }
419                               ]
420                             }
421                         $part_pkg->svc_part_pkg_link
422                       )
423                     ];
424
425                   };
426
427 $align .= 'lrl'; #rr';
428
429 # --------
430
431 my $count_extra_sql = $extra_sql;
432 $count_extra_sql =~ s/^\s*AND /WHERE /i;
433 $extra_count = ( $count_extra_sql ? ' AND ' : ' WHERE ' ). $extra_count
434   if $extra_count;
435 my $count_query = "SELECT COUNT(*) FROM part_pkg $count_extra_sql $extra_count";
436
437 </%init>