FCC from 477 improvements #4912
[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                                      'Cancel',
23                                      'Reason',
24                                      FS::UI::Web::cust_header(
25                                        $cgi->param('cust_fields')
26                                      ),
27                                      'Services',
28                                    ],
29                   'fields'      => [
30                     'pkgnum',
31                     'quantity',
32                     sub { #my $part_pkg = $part_pkg{shift->pkgpart};
33                           #$part_pkg->pkg; # ' - '. $part_pkg->comment;
34                           $_[0]->pkg; # ' - '. $_[0]->comment;
35                         },
36                     'classname',
37                     sub { ucfirst(shift->status); },
38                     sub { sprintf( $money_char.'%.2f',
39                                    shift->part_pkg->option('setup_fee'),
40                                  );
41                         },
42                     sub { my $c = shift;
43                           sprintf( $money_char.'%.2f',
44                                    $c->part_pkg->base_recur($c)
45                                  );
46                         },
47                     sub { #shift->part_pkg->freq_pretty;
48
49                           #my $part_pkg = $part_pkg{shift->pkgpart};
50                           #$part_pkg->freq_pretty;
51
52                           FS::part_pkg::freq_pretty(shift);
53                         },
54
55                     #sub { time2str('%b %d %Y', shift->setup); },
56                     #sub { time2str('%b %d %Y', shift->last_bill); },
57                     #sub { time2str('%b %d %Y', shift->bill); },
58                     #sub { time2str('%b %d %Y', shift->susp); },
59                     #sub { time2str('%b %d %Y', shift->expire); },
60                     #sub { time2str('%b %d %Y', shift->get('cancel')); },
61                     ( map { time_or_blank($_) }
62                           qw( setup last_bill bill adjourn susp expire cancel ) ),
63
64                     sub { my $self = shift;
65                           my $return = '';
66                           foreach my $action ( qw ( cancel susp ) ) {
67                             my $reason = $self->last_reason($action);
68                             $return = $reason->reason if $reason;
69                             last if $return;
70                           }
71                           $return;
72                         },
73
74                     \&FS::UI::Web::cust_fields,
75                     #sub { '<table border=0 cellspacing=0 cellpadding=0 STYLE="border:none">'.
76                     #      join('', map { '<tr><td align="right" style="border:none">'. $_->[0].
77                     #                     ':</td><td style="border:none">'. $_->[1]. '</td></tr>' }
78                     #                   shift->labels
79                     #          ).
80                     #      '</table>';
81                     #    },
82                     sub {
83                           [ map {
84                                   [ 
85                                     { 'data' => $_->[0]. ':',
86                                       'align'=> 'right',
87                                     },
88                                     { 'data' => $_->[1],
89                                       'align'=> 'left',
90                                       'link' => $p. 'view/' .
91                                                 $_->[2]. '.cgi?'. $_->[3],
92                                     },
93                                   ];
94                                 } shift->labels
95                           ];
96                         },
97                   ],
98                   'color' => [
99                     '',
100                     '',
101                     '',
102                     '',
103                     sub { shift->statuscolor; },
104                     '',
105                     '',
106                     '',
107                     '',
108                     '',
109                     '',
110                     '',
111                     '',
112                     '',
113                     '',
114                     '',
115                     FS::UI::Web::cust_colors(),
116                     '',
117                   ],
118                   'style' => [ '', '', '', '', 'b', '', '', '', '', '', '', '', '', '', '', '',
119                                FS::UI::Web::cust_styles() ],
120                   'size'  => [ '', '', '', '', '-1' ],
121                   'align' => 'rrlccrrlrrrrrrrl'. FS::UI::Web::cust_aligns(). 'r',
122                   'links' => [
123                     $link,
124                     $link,
125                     $link,
126                     '',
127                     '',
128                     '',
129                     '',
130                     '',
131                     '',
132                     '',
133                     '',
134                     '',
135                     '',
136                     '',
137                     '',
138                     '',
139                     ( map { $_ ne 'Cust. Status' ? $clink : '' }
140                           FS::UI::Web::cust_header(
141                                                     $cgi->param('cust_fields')
142                                                   )
143                     ),
144                     '',
145                   ],
146                   'extra_choices_callback'=> $extra_choices, 
147               )
148 %>
149 <%init>
150
151 my $curuser = $FS::CurrentUser::CurrentUser;
152
153 die "access denied"
154   unless $curuser->access_right('List packages');
155
156 my $conf = new FS::Conf;
157 my $money_char = $conf->config('money_char') || '$';
158
159 # my %part_pkg = map { $_->pkgpart => $_ } qsearch('part_pkg', {});
160
161   my %search_hash = ();
162   
163   $search_hash{'query'} = $cgi->keywords;
164   
165   for ( qw(agentnum magic status classnum pkgpart custom ) ) {
166     $search_hash{$_} = $cgi->param($_) if $cgi->param($_);
167   }
168
169   for my $param ( qw(censustract) ) {
170     $search_hash{$param} = $cgi->param($param) || ''
171       if ( grep { /$param/ } $cgi->param );
172   }
173
174 my @report_option = $cgi->param('report_option')
175   if $cgi->param('report_option');
176 $search_hash{report_option} = join(',', @report_option) if @report_option;
177
178 ###
179 # parse dates
180 ###
181
182 #false laziness w/report_cust_pkg.html
183 my %disable = (
184   'all'             => {},
185   'one-time charge' => { 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, },
186   'active'          => { 'susp'=>1, 'cancel'=>1 },
187   'suspended'       => { 'cancel' => 1 },
188   'cancelled'       => {},
189   ''                => {},
190 );
191
192 foreach my $field (qw( setup last_bill bill adjourn susp expire cancel )) {
193
194   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);
195
196   next if $beginning == 0 && $ending == 4294967295
197        or $disable{$cgi->param('status')}->{$field};
198
199   $search_hash{$field} = [ $beginning, $ending ];
200
201 }
202
203 my $sql_query = FS::cust_pkg->search_sql(\%search_hash);
204 my $count_query = delete($sql_query->{'count_query'});
205
206 my $show = $curuser->default_customer_view =~ /^(jumbo|packages)$/
207              ? ''
208              : ';show=packages';
209
210 my $link = sub {
211   my $self = shift;
212   my $frag = 'cust_pkg'. $self->pkgnum; #hack for IE ignoring real #fragment
213   [ "${p}view/cust_main.cgi?custnum=".$self->custnum.
214                            "$show;fragment=$frag#cust_pkg",
215     'pkgnum'
216   ];
217 };
218
219 my $clink = sub {
220   my $cust_pkg = shift;
221   $cust_pkg->cust_main_custnum
222     ? [ "${p}view/cust_main.cgi?", 'custnum' ] 
223     : '';
224 };
225
226 #if ( scalar(@cust_pkg) == 1 ) {
227 #  print $cgi->redirect("${p}view/cust_main.cgi?". $cust_pkg[0]->custnum.
228 #                       "#cust_pkg". $cust_pkg[0]->pkgnum );
229
230 #    my @cust_svc = qsearch( 'cust_svc', { 'pkgnum' => $pkgnum } );
231 #    my $rowspan = scalar(@cust_svc) || 1;
232
233 #    my $n2 = '';
234 #    foreach my $cust_svc ( @cust_svc ) {
235 #      my($label, $value, $svcdb) = $cust_svc->label;
236 #      my $svcnum = $cust_svc->svcnum;
237 #      my $sview = $p. "view";
238 #      print $n2,qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$label</FONT></A></TD>!,
239 #            qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$value</FONT></A></TD>!;
240 #      $n2="</TR><TR>";
241 #    }
242
243 sub time_or_blank {
244    my $column = shift;
245    return sub {
246      my $record = shift;
247      my $value = $record->get($column); #mmm closures
248      $value ? time2str('%b %d %Y', $value ) : '';
249    };
250 }
251
252 my $html_init = include('/elements/init_overlib.html');
253
254 my $extra_choices = sub {
255   my $query = shift;
256
257   return '' unless
258    $FS::CurrentUser::CurrentUser->access_right('Bulk change customer packages');
259     
260   '<BR><BR>'.
261   include( '/elements/popup_link.html',
262              'label'       => 'Change these packages',
263              'action'      => "${p}misc/bulk_change_pkg.cgi?$query",
264              'actionlabel' => 'Change Packages',
265              'width'       => 763,
266              'height'      => 336,
267          );
268 };
269
270 </%init>