This commit was generated by cvs2svn to compensate for changes in r8690,
[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 #some false laziness w/misc/bulk_change_pkg.cgi
164   
165 $search_hash{'query'} = $cgi->keywords;
166   
167 for (qw( agentnum custnum magic status classnum custom cust_fields )) {
168   $search_hash{$_} = $cgi->param($_) if $cgi->param($_);
169 }
170
171 $search_hash{'pkgpart'} = [ $cgi->param('pkgpart') ];
172
173 for my $param ( qw(censustract) ) {
174   $search_hash{$param} = $cgi->param($param) || ''
175     if ( grep { /$param/ } $cgi->param );
176 }
177
178 my @report_option = $cgi->param('report_option')
179   if $cgi->param('report_option');
180 $search_hash{report_option} = join(',', @report_option) if @report_option;
181
182 ###
183 # parse dates
184 ###
185
186 #false laziness w/report_cust_pkg.html
187 my %disable = (
188   'all'             => {},
189   'one-time charge' => { 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, },
190   'active'          => { 'susp'=>1, 'cancel'=>1 },
191   'suspended'       => { 'cancel' => 1 },
192   'cancelled'       => {},
193   ''                => {},
194 );
195
196 foreach my $field (qw( setup last_bill bill adjourn susp expire cancel )) {
197
198   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);
199
200   next if $beginning == 0 && $ending == 4294967295
201        or $disable{$cgi->param('status')}->{$field};
202
203   $search_hash{$field} = [ $beginning, $ending ];
204
205 }
206
207 my $sql_query = FS::cust_pkg->search(\%search_hash);
208 my $count_query = delete($sql_query->{'count_query'});
209
210 my $show = $curuser->default_customer_view =~ /^(jumbo|packages)$/
211              ? ''
212              : ';show=packages';
213
214 my $link = sub {
215   my $self = shift;
216   my $frag = 'cust_pkg'. $self->pkgnum; #hack for IE ignoring real #fragment
217   [ "${p}view/cust_main.cgi?custnum=".$self->custnum.
218                            "$show;fragment=$frag#cust_pkg",
219     'pkgnum'
220   ];
221 };
222
223 my $clink = sub {
224   my $cust_pkg = shift;
225   $cust_pkg->cust_main_custnum
226     ? [ "${p}view/cust_main.cgi?", 'custnum' ] 
227     : '';
228 };
229
230 #if ( scalar(@cust_pkg) == 1 ) {
231 #  print $cgi->redirect("${p}view/cust_main.cgi?". $cust_pkg[0]->custnum.
232 #                       "#cust_pkg". $cust_pkg[0]->pkgnum );
233
234 #    my @cust_svc = qsearch( 'cust_svc', { 'pkgnum' => $pkgnum } );
235 #    my $rowspan = scalar(@cust_svc) || 1;
236
237 #    my $n2 = '';
238 #    foreach my $cust_svc ( @cust_svc ) {
239 #      my($label, $value, $svcdb) = $cust_svc->label;
240 #      my $svcnum = $cust_svc->svcnum;
241 #      my $sview = $p. "view";
242 #      print $n2,qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$label</FONT></A></TD>!,
243 #            qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$value</FONT></A></TD>!;
244 #      $n2="</TR><TR>";
245 #    }
246
247 sub time_or_blank {
248    my $column = shift;
249    return sub {
250      my $record = shift;
251      my $value = $record->get($column); #mmm closures
252      $value ? time2str('%b %d %Y', $value ) : '';
253    };
254 }
255
256 my $html_init = include('/elements/init_overlib.html');
257
258 my $extra_choices = sub {
259   my $query = shift;
260
261   return '' unless
262    $FS::CurrentUser::CurrentUser->access_right('Bulk change customer packages');
263     
264   '<BR><BR>'.
265   include( '/elements/popup_link.html',
266              'label'       => 'Change these packages',
267              'action'      => "${p}misc/bulk_change_pkg.cgi?$query",
268              'actionlabel' => 'Change Packages',
269              'width'       => 763,
270              'height'      => 336,
271          );
272 };
273
274 </%init>