allow multiple classnums in package search, RT#13922
[freeside.git] / httemplate / search / cust_pkg.cgi
1 <% include( 'elements/search.html',
2                   'html_init'   => $html_init, 
3                   'title'       => 'Package Search Results', 
4                   'name'        => 'packages',
5                   'query'       => $sql_query,
6                   'count_query' => $count_query,
7                   #'redirect'    => $link,
8                   'header'      => [ '#',
9                                      'Quan.',
10                                      'Package',
11                                      'Class',
12                                      'Status',
13                                      'Setup',
14                                      'Base Recur',
15                                      'Freq.',
16                                      'Setup',
17                                      'Last bill',
18                                      'Next bill',
19                                      'Adjourn',
20                                      'Susp.',
21                                      'Expire',
22                                      'Contract end',
23                                      'Cancel',
24                                      'Reason',
25                                      FS::UI::Web::cust_header(
26                                        $cgi->param('cust_fields')
27                                      ),
28                                      'Services',
29                                    ],
30                   'fields'      => [
31                     'pkgnum',
32                     'quantity',
33                     sub { #my $part_pkg = $part_pkg{shift->pkgpart};
34                           #$part_pkg->pkg; # ' - '. $part_pkg->comment;
35                           $_[0]->pkg; # ' - '. $_[0]->comment;
36                         },
37                     'classname',
38                     sub { ucfirst(shift->status); },
39                     sub { sprintf( $money_char.'%.2f',
40                                    shift->part_pkg->option('setup_fee'),
41                                  );
42                         },
43                     sub { my $c = shift;
44                           sprintf( $money_char.'%.2f',
45                                    $c->part_pkg->base_recur($c)
46                                  );
47                         },
48                     sub { #shift->part_pkg->freq_pretty;
49
50                           #my $part_pkg = $part_pkg{shift->pkgpart};
51                           #$part_pkg->freq_pretty;
52
53                           FS::part_pkg::freq_pretty(shift);
54                         },
55
56                     #sub { time2str('%b %d %Y', shift->setup); },
57                     #sub { time2str('%b %d %Y', shift->last_bill); },
58                     #sub { time2str('%b %d %Y', shift->bill); },
59                     #sub { time2str('%b %d %Y', shift->susp); },
60                     #sub { time2str('%b %d %Y', shift->expire); },
61                     #sub { time2str('%b %d %Y', shift->get('cancel')); },
62                     ( map { time_or_blank($_) }
63           qw( setup last_bill bill adjourn susp expire contract_end cancel ) ),
64
65                     sub { my $self = shift;
66                           my $return = '';
67                           foreach my $action ( qw ( cancel susp ) ) {
68                             my $reason = $self->last_reason($action);
69                             $return = $reason->reason if $reason;
70                             last if $return;
71                           }
72                           $return;
73                         },
74
75                     \&FS::UI::Web::cust_fields,
76                     #sub { '<table border=0 cellspacing=0 cellpadding=0 STYLE="border:none">'.
77                     #      join('', map { '<tr><td align="right" style="border:none">'. $_->[0].
78                     #                     ':</td><td style="border:none">'. $_->[1]. '</td></tr>' }
79                     #                   shift->labels
80                     #          ).
81                     #      '</table>';
82                     #    },
83                     sub {
84                       my $cust_pkg = shift;
85                       my $type = $cgi->param('_type') || '';
86                       if ($type =~ /xls|csv/) {
87                         my $cust_svc = $cust_pkg->primary_cust_svc;
88                         if($cust_svc) {
89                           return join ": ",($cust_svc->label)[0,1];
90                         }
91                         else {
92                           return '';
93                         }
94                       }
95                       else {
96                           [ $process_svc_labels->( $cust_pkg ) ]
97                       }
98                     }
99                   ],
100                   'color' => [
101                     '',
102                     '',
103                     '',
104                     '',
105                     sub { shift->statuscolor; },
106                     '',
107                     '',
108                     '',
109                     '',
110                     '',
111                     '',
112                     '',
113                     '',
114                     '',
115                     '',
116                     '',
117                     '',
118                     FS::UI::Web::cust_colors(),
119                     '',
120                   ],
121                   'style' => [ '', '', '', '', 'b', '', '', '', '', '', '', '', '', '', '', '', '',
122                                FS::UI::Web::cust_styles() ],
123                   'size'  => [ '', '', '', '', '-1' ],
124                   'align' => 'rrlccrrlrrrrrrrrl'. FS::UI::Web::cust_aligns(). 'r',
125                   'links' => [
126                     $link,
127                     $link,
128                     $link,
129                     '',
130                     '',
131                     '',
132                     '',
133                     '',
134                     '',
135                     '',
136                     '',
137                     '',
138                     '',
139                     '',
140                     '',
141                     '',
142                     '',
143                     ( map { $_ ne 'Cust. Status' ? $clink : '' }
144                           FS::UI::Web::cust_header(
145                                                     $cgi->param('cust_fields')
146                                                   )
147                     ),
148                     '',
149                   ],
150               )
151 %>
152 <%init>
153
154 my $curuser = $FS::CurrentUser::CurrentUser;
155
156 die "access denied"
157   unless $curuser->access_right('List packages');
158
159 my $conf = new FS::Conf;
160 my $money_char = $conf->config('money_char') || '$';
161
162 # my %part_pkg = map { $_->pkgpart => $_ } qsearch('part_pkg', {});
163
164 my %search_hash = ();
165
166 #some false laziness w/misc/bulk_change_pkg.cgi
167   
168 $search_hash{'query'} = $cgi->keywords;
169
170 #scalars
171 for (qw( agentnum custnum magic status custom cust_fields pkgbatch )) {
172   $search_hash{$_} = $cgi->param($_) if $cgi->param($_);
173 }
174
175 #arrays
176 for (qw( pkgpart classnum )) {
177   $search_hash{$_} = [ $cgi->param($_) ];
178 }
179
180 for my $param ( qw(censustract) ) {
181   $search_hash{$param} = $cgi->param($param) || ''
182     if ( grep { /$param/ } $cgi->param );
183 }
184
185 my @report_option = $cgi->param('report_option')
186   if $cgi->param('report_option');
187 $search_hash{report_option} = join(',', @report_option) if @report_option;
188
189 ###
190 # parse dates
191 ###
192
193 #false laziness w/report_cust_pkg.html
194 my %disable = (
195   'all'             => {},
196   'one-time charge' => { 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, },
197   'active'          => { 'susp'=>1, 'cancel'=>1 },
198   'suspended'       => { 'cancel' => 1 },
199   'cancelled'       => {},
200   ''                => {},
201 );
202
203 foreach my $field (qw( setup last_bill bill adjourn susp expire contract_end cancel active )) {
204
205   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);
206
207   next if $beginning == 0 && $ending == 4294967295
208        or $disable{$cgi->param('status')}->{$field};
209
210   $search_hash{$field} = [ $beginning, $ending ];
211
212 }
213
214 my $sql_query = FS::cust_pkg->search(\%search_hash);
215 my $count_query = delete($sql_query->{'count_query'});
216
217 my $show = $curuser->default_customer_view =~ /^(jumbo|packages)$/
218              ? ''
219              : ';show=packages';
220
221 my $link = sub {
222   my $self = shift;
223   my $frag = 'cust_pkg'. $self->pkgnum; #hack for IE ignoring real #fragment
224   [ "${p}view/cust_main.cgi?custnum=".$self->custnum.
225                            "$show;fragment=$frag#cust_pkg",
226     'pkgnum'
227   ];
228 };
229
230 my $clink = sub {
231   my $cust_pkg = shift;
232   $cust_pkg->cust_main_custnum
233     ? [ "${p}view/cust_main.cgi?", 'custnum' ] 
234     : '';
235 };
236
237 #if ( scalar(@cust_pkg) == 1 ) {
238 #  print $cgi->redirect("${p}view/cust_main.cgi?". $cust_pkg[0]->custnum.
239 #                       "#cust_pkg". $cust_pkg[0]->pkgnum );
240
241 #    my @cust_svc = qsearch( 'cust_svc', { 'pkgnum' => $pkgnum } );
242 #    my $rowspan = scalar(@cust_svc) || 1;
243
244 #    my $n2 = '';
245 #    foreach my $cust_svc ( @cust_svc ) {
246 #      my($label, $value, $svcdb) = $cust_svc->label;
247 #      my $svcnum = $cust_svc->svcnum;
248 #      my $sview = $p. "view";
249 #      print $n2,qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$label</FONT></A></TD>!,
250 #            qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$value</FONT></A></TD>!;
251 #      $n2="</TR><TR>";
252 #    }
253
254 sub time_or_blank {
255    my $column = shift;
256    return sub {
257      my $record = shift;
258      my $value = $record->get($column); #mmm closures
259      $value ? time2str('%b %d %Y', $value ) : '';
260    };
261 }
262
263 my $html_init = sub {
264   my $query = shift;
265   my $text = '';
266   my $curuser = $FS::CurrentUser::CurrentUser;
267
268   if ( $curuser->access_right('Bulk change customer packages') ) {
269     $text .= include('/elements/init_overlib.html').
270              include( '/elements/popup_link.html',
271                'label'       => 'Change these packages',
272                'action'      => "${p}misc/bulk_change_pkg.cgi?$query",
273                'actionlabel' => 'Change Packages',
274                'width'       => 569,
275                'height'      => 210,
276              ). '<BR>';
277
278     if ( $curuser->access_right('Edit customer package dates') ) {
279       $text .= include( '/elements/popup_link.html',
280                  'label'       => 'Increment next bill date',
281                  'action'      => "${p}misc/bulk_pkg_increment_bill.cgi?$query",
282                  'actionlabel' => 'Increment Bill Date',
283                  'width'       => 569,
284                  'height'      => 210,
285               ). '<BR>';
286     }
287     $text .= include( '/elements/email-link.html',
288                 'search_hash' => \%search_hash,
289                 'table'       => 'cust_pkg',
290                 );
291   }
292   return $text;
293 };
294
295 my $large_pkg_size = $conf->config('cust_pkg-large_pkg_size');
296
297 my $process_svc_labels = sub {
298   my $cust_pkg = shift;
299   my @out;
300   foreach my $part_svc ( $cust_pkg->part_svc) {
301     # some false laziness with view/cust_main/packages/services.html
302
303     my $num_cust_svc = $cust_pkg->num_cust_svc( $part_svc->svcpart );
304
305     if ( $large_pkg_size > 0 and $large_pkg_size <= $num_cust_svc ) {
306       my $href = $p.'search/cust_pkg_svc.html?svcpart='.$part_svc->svcpart.
307           ';pkgnum='.$cust_pkg->pkgnum;
308       push @out, [
309         { 'data'  => $part_svc->svc . ':',
310           'align' => 'right',
311           'rowspan' => 2 },
312         { 'data'  => '(view all '. $num_cust_svc .')',
313           'data_style' => 'b',
314           'align' => 'left',
315           'link'  => $href, },
316       ],
317       [
318         { 'data'  => include('/elements/search-cust_svc.html',
319                         'svcpart' => $part_svc->svcpart,
320                         'pkgnum'  => $cust_pkg->pkgnum,
321                     ),
322           'align' => 'left' },
323       ];
324     }
325     else {
326       foreach ( map { [ $_->label ] } @{ $part_svc->cust_pkg_svc } ) {
327         push @out, [ 
328         { 'data' => $_->[0]. ':',
329           'align'=> 'right', },
330         { 'data' => $_->[1],
331           'align'=> 'left',
332           'link' => $p. 'view/' .
333           $_->[2]. '.cgi?'. $_->[3], },
334         ];
335       }
336     }
337   } #foreach $cust_pkg
338   return @out;
339 };
340
341 </%init>