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