package definition browse/search, filter by package class, RT#5255
[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'    => 3,
8                  'agent_virt'            => 1,
9                  'agent_null_right'      => [ $edit, $edit_global ],
10                  'agent_null_right_link' => $edit_global,
11                  'agent_pos'             => 5,
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 # ------
156
157 my $link = [ $p.'edit/part_pkg.cgi?', 'pkgpart' ];
158
159 my @header = ( '#', 'Package', 'Comment' );
160 my @fields = ( 'pkgpart', 'pkg', 'comment' );
161 my $align = 'rll';
162 my @links = ( $link, $link, '' );
163
164 unless ( 0 ) { #already showing only one class or something?
165   push @header, 'Class';
166   push @fields, sub { shift->classname || '(none)'; };
167   $align .= 'l';
168 }
169
170 tie my %plans, 'Tie::IxHash', %{ FS::part_pkg::plan_info() };
171
172 tie my %plan_labels, 'Tie::IxHash',
173   map {  $_ => ( $plans{$_}->{'shortname'} || $plans{$_}->{'name'} ) }
174       keys %plans;
175
176 push @header, 'Pricing';
177 $align .= 'r'; #?
178 push @fields, sub {
179   my $part_pkg = shift;
180   (my $plan = $plan_labels{$part_pkg->plan} ) =~ s/ /&nbsp;/g;
181   my $is_recur = ( $part_pkg->freq ne '0' );
182
183   [
184     [
185       { data =>$plan,
186         align=>'center',
187         colspan=>2,
188       },
189     ],
190     [
191       { data =>$money_char.
192                sprintf('%.2f', $part_pkg->option('setup_fee') ),
193         align=>'right'
194       },
195       { data => ( $is_recur ? ' setup' : ' one-time' ),
196         align=>'left',
197       },
198     ],
199     [
200       { data=>( $is_recur
201                   ? $money_char.sprintf('%.2f ', $part_pkg->option('recur_fee') )
202                   : $part_pkg->freq_pretty
203               ),
204         align=> ( $is_recur ? 'right' : 'center' ),
205         colspan=> ( $is_recur ? 1 : 2 ),
206       },
207       ( $is_recur
208         ?  { data => ( $is_recur ? $part_pkg->freq_pretty : '' ),
209              align=>'left',
210            }
211         : ()
212       ),
213     ],
214     ( map { 
215             my $dst_pkg = $_->dst_pkg;
216             [ 
217               { data => 'Add-on:&nbsp;'.$dst_pkg->pkg_comment,
218                 align=>'center', #?
219                 colspan=>2,
220               }
221             ]
222           }
223       $part_pkg->bill_part_pkg_link
224     ),
225   ];
226
227 #  $plan_labels{$part_pkg->plan}.'<BR>'.
228 #    $money_char.sprintf('%.2f setup<BR>', $part_pkg->option('setup_fee') ).
229 #    ( $part_pkg->freq ne '0'
230 #      ? $money_char.sprintf('%.2f ', $part_pkg->option('recur_fee') )
231 #      : ''
232 #    ).
233 #    $part_pkg->freq_pretty; #.'<BR>'
234 };
235
236 ###
237 # Agent goes here if displayed
238 ###
239
240 #agent type
241 if ( $acl_edit_global ) {
242   #really we just want a count, but this is fine unless someone has tons
243   my @all_agent_types = map {$_->typenum} qsearch('agent_type',{});
244   if ( scalar(@all_agent_types) > 1 ) {
245     push @header, 'Agent types';
246     my $typelink = $p. 'edit/agent_type.cgi?';
247     push @fields, sub { my $part_pkg = shift;
248                         [
249                           map { my $agent_type = $_->agent_type;
250                                 [ 
251                                   { 'data'  => $agent_type->atype, #escape?
252                                     'align' => 'left',
253                                     'link'  => ( $acl_config
254                                                    ? $typelink.
255                                                      $agent_type->typenum
256                                                    : ''
257                                                ),
258                                   },
259                                 ];
260                               }
261                               $part_pkg->type_pkgs
262                         ];
263                       };
264     $align .= 'l';
265   }
266 }
267
268 #if ( $cgi->param('active') ) {
269   push @header, 'Customer<BR>packages';
270   my %col = (
271     'active'          => '00CC00',
272     'suspended'       => 'FF9900',
273     'cancelled'       => 'FF0000',
274     #'one-time charge' => '000000',
275     'charge'          => '000000',
276   );
277   my $cust_pkg_link = $p. 'search/cust_pkg.cgi?pkgpart=';
278   push @fields, sub { my $part_pkg = shift;
279                       [
280                         map {
281                               my $magic = $_;
282                               my $label = $_;
283                               if ( $magic eq 'active' && $part_pkg->freq == 0 ) {
284                                 $magic = 'inactive';
285                                 #$label = 'one-time charge',
286                                 $label = 'charge',
287                               }
288                           
289                               [
290                                 {
291                                  'data'  => '<B><FONT COLOR="#'. $col{$label}. '">'.
292                                             $part_pkg->get("num_$_").
293                                             '</FONT></B>',
294                                  'align' => 'right',
295                                 },
296                                 {
297                                  'data'  => $label.
298                                               ( $part_pkg->get("num_$_") != 1
299                                                 && $label =~ /charge$/
300                                                   ? 's'
301                                                   : ''
302                                               ),
303                                  'align' => 'left',
304                                  'link'  => ( $part_pkg->get("num_$_")
305                                                 ? $cust_pkg_link.
306                                                   $part_pkg->pkgpart.
307                                                   ";magic=$magic"
308                                                 : ''
309                                             ),
310                                 },
311                               ],
312                             } (qw( active suspended cancelled ))
313                       ]; };
314   $align .= 'r';
315 #}
316
317 if ( $taxclasses ) {
318   push @header, 'Taxclass';
319   push @fields, sub { shift->taxclass() || '&nbsp;'; };
320   $align .= 'l';
321 }
322
323 push @header, 'Plan options',
324               'Services';
325               #'Service', 'Quan', 'Primary';
326
327 push @fields, 
328               sub {
329                     my $part_pkg = shift;
330                     if ( $part_pkg->plan ) {
331
332                       my %options = $part_pkg->options;
333
334                       [ map { 
335                               [
336                                 { 'data'  => $_,
337                                   'align' => 'right',
338                                 },
339                                 { 'data'  => $part_pkg->format($_,$options{$_}),
340                                   'align' => 'left',
341                                 },
342                               ];
343                             }
344                         grep { $options{$_} =~ /\S/ } 
345                         grep { $_ !~ /^(setup|recur)_fee$/ }
346                         keys %options
347                       ];
348
349                     } else {
350
351                       [ map { [
352                                 { 'data'  => uc($_),
353                                   'align' => 'right',
354                                 },
355                                 {
356                                   'data'  => $part_pkg->$_(),
357                                   'align' => 'left',
358                                 },
359                               ];
360                             }
361                         (qw(setup recur))
362                       ];
363
364                     }
365
366                   },
367
368               sub {
369                     my $part_pkg = shift;
370
371                     [ 
372                       (map {
373                              my $pkg_svc = $_;
374                              my $part_svc = $pkg_svc->part_svc;
375                              my $svc = $part_svc->svc;
376                              if ( $pkg_svc->primary_svc =~ /^Y/i ) {
377                                $svc = "<B>$svc (PRIMARY)</B>";
378                              }
379                              $svc =~ s/ +/&nbsp;/g;
380
381                              [
382                                {
383                                  'data'  => '<B>'. $pkg_svc->quantity. '</B>',
384                                  'align' => 'right'
385                                },
386                                {
387                                  'data'  => $svc,
388                                  'align' => 'left',
389                                  'link'  => ( $acl_config
390                                                 ? $p. 'edit/part_svc.cgi?'.
391                                                   $part_svc->svcpart
392                                                 : ''
393                                             ),
394                                },
395                              ];
396                            }
397                       sort {     $b->primary_svc =~ /^Y/i
398                              <=> $a->primary_svc =~ /^Y/i
399                            }
400                            $part_pkg->pkg_svc('disable_linked'=>1)
401                       ),
402                       ( map { 
403                               my $dst_pkg = $_->dst_pkg;
404                               [
405                                 { data => 'Add-on:&nbsp;'.$dst_pkg->pkg_comment,
406                                   align=>'center', #?
407                                   colspan=>2,
408                                 }
409                               ]
410                             }
411                         $part_pkg->svc_part_pkg_link
412                       )
413                     ];
414
415                   };
416
417 $align .= 'lrl'; #rr';
418
419 # --------
420
421 my $count_extra_sql = $extra_sql;
422 $count_extra_sql =~ s/^\s*AND /WHERE /i;
423 $extra_count = ( $count_extra_sql ? ' AND ' : ' WHERE ' ). $extra_count
424   if $extra_count;
425 my $count_query = "SELECT COUNT(*) FROM part_pkg $count_extra_sql $extra_count";
426
427 </%init>