remove customer deletion
[freeside.git] / httemplate / search / elements / search-html.html
1 %   if ( exists($opt{'redirect'}) && $opt{'redirect'}
2 %        && scalar(@$rows) == 1 && $total == 1
3 %        && $type ne 'html-print'
4 %      ) {
5 %     my $redirect = $opt{'redirect'};
6 %     $redirect = &{$redirect}($rows->[0], $cgi) if ref($redirect) eq 'CODE';
7 %     my( $url, $method ) = @$redirect;
8 %     redirect( $url. $rows->[0]->$method() );
9 %   } elsif ( exists($opt{'redirect_empty'}) && ! scalar(@$rows) && $total == 0
10 %             && $type ne 'html-print'
11 %             && $opt{'redirect_empty'}
12 %             && ( ref($opt{'redirect_empty'}) ne 'CODE'
13 %                  || &{$opt{'redirect_empty'}}($cgi)    )
14 %      ) {
15 %     my $redirect = $opt{'redirect_empty'};
16 %     $redirect = &{$redirect}($cgi) if ref($redirect) eq 'CODE';
17 %     redirect( $redirect );
18 %   } else {
19 %     if ( $opt{'name_singular'} ) {
20 %       $opt{'name'} = PL($opt{'name_singular'});
21 %     }
22 %     ( my $xlsname = $opt{'name'} ) =~ s/\W//g;
23 %     if ( $total == 1 ) {
24 %       if ( $opt{'name_singular'} ) {
25 %         $opt{'name'} = $opt{'name_singular'}
26 %       } else {
27 %         #$opt{'name'} =~ s/s$// if $total == 1;
28 %         $opt{'name'} =~ s/((s)e)?s$/$2/ if $total == 1;
29 %       }
30 %     }
31 %
32 %     unless ( $opt{nohtmlheader} ) {
33 %
34 %       if ( $type eq 'html-print' ) {
35           <& /elements/header-popup.html, $opt{'title'} &>
36 %       } else {
37 %         if ( $type eq 'select' ) {
38             <&/elements/header-popup.html, $opt{'title'} &>
39 %         } else {
40 %
41 %           my @menubar = ();
42 %           if ( $opt{'menubar'} ) {
43 %             @menubar = @{ $opt{'menubar'} };
44 %           #} else {
45 %           #  @menubar = ( 'Main menu' => $p );
46 %           }
47
48             <& /elements/header.html, $opt{'title'},
49                  include( '/elements/menubar.html', @menubar )
50             &>
51
52 %         }
53 %       }
54 %
55 %     }
56 %
57 %     unless ( $type eq 'html-print' ) {
58
59 %       if ( $opt{'add_link'} ) { #or after html_init?
60           <A HREF="<%$p%>edit/<% $opt{query}->{table} %>.html"><I>Add a <% $opt{'name_singular'} %></I></A><BR><BR>
61 %       }
62
63         <% defined($opt{'html_init'}) 
64               ? ( ref($opt{'html_init'})
65                     ? &{$opt{'html_init'}}()
66                     : $opt{'html_init'}
67                 )
68               : ''
69         %>
70
71 %     }
72
73 %     unless ( $total ) { 
74 %       unless ( $opt{'disable_nonefound'} ) { 
75           <BR><BR>No matching <% $opt{'name'} %> found.<BR>
76 %       } 
77 %     }
78 %
79 %     if ( $total || $opt{'disableable'} ) { #hmm... and there *are* ones to show??
80
81         <TABLE>
82           <TR>
83
84             <TD VALIGN="bottom">
85
86               <FORM>
87
88 %               if (! $opt{'disable_total'}) {
89                   <% $total %> total <% $opt{'name'} %>
90 %               }
91
92 %               if ( $confmax && $total > $confmax
93 %                    && ! $opt{'disable_maxselect'}
94 %                    && $type ne 'html-print' )
95 %               {
96 %                 $cgi->delete('maxrecords');
97 %                 $cgi->param('_dummy', 1);
98
99                   ( show <SELECT NAME="maxrecords" onChange="window.location = '<% "$self_url?". $cgi->query_string %>;maxrecords=' + this.options[this.selectedIndex].value;">
100
101 %                   foreach my $max ( map { $_ * $confmax } qw( 1 5 10 25 ) ) {
102                   <OPTION VALUE="<% $max %>" <% ( $maxrecords == $max ) ? 'SELECTED' : '' %>><% $max %></OPTION>
103 %                   }
104
105                   </SELECT> per page )
106
107 %                 $cgi->param('maxrecords', $maxrecords);
108 %               }
109
110 %               if ( defined($opt{'html_posttotal'}) && $type ne 'html-print' ) {
111                     <% ref($opt{'html_posttotal'})
112                          ? &{$opt{'html_posttotal'}}()
113                          : $opt{'html_posttotal'}
114                     %>
115 %               }
116                 <BR>
117
118 %               if ( $opt{'count_addl'} ) { 
119 %                 my $n=0;
120 %                 foreach my $count ( @{$opt{'count_addl'}} ) { 
121 %                   my $data = $count_arrayref->[++$n];
122 %                   if ( ref($count) ) {
123                       <% &{ $count }( $data ) %>
124 %                   } else {
125                       <% sprintf( $count, $data ) %><BR>
126 %                   }
127 %                 } 
128 %               } 
129               </FORM>
130
131             </TD>
132
133 %           if ( $curuser->access_right('Download report data')
134 %                 and !$opt{'disable_download'}
135 %                 and $type ne 'html-print' ) { 
136
137               <TD ALIGN="right" CLASS="noprint">
138
139                 <% $opt{'download_label'} || 'Download full results' %><BR>
140
141 %               $cgi->param('_type', "$xlsname.xls" ); 
142                 as <A HREF="<% "$self_url?". $cgi->query_string %>">Excel spreadsheet</A><BR>
143
144 %               $cgi->param('_type', 'csv'); 
145                 as <A HREF="<% "$self_url?". $cgi->query_string %>">CSV file</A><BR>
146
147 %             if ( defined($opt{xml_elements}) ) {
148 %               $cgi->param('_type', 'xml'); 
149                 as <A HREF="<% "$self_url?". $cgi->query_string %>">XML file</A><BR>
150 %             }
151
152 %               $cgi->param('_type', 'html-print'); 
153                 as <A HREF="<% "$self_url?". $cgi->query_string %>">printable copy</A>
154
155               </TD>
156 %             $cgi->param('_type', "html" ); 
157 %           } 
158
159           </TR>
160           <TR>
161             <TD COLSPAN=2>
162
163 %             my $pager = '';
164 %             unless ( $type eq 'html_print' ) {
165
166                 <% $pager = include( '/elements/pager.html',
167                                        'offset'     => $offset,
168                                        'num_rows'   => scalar(@$rows),
169                                        'total'      => $total,
170                                        'maxrecords' => $maxrecords,
171                                    )
172                 %>
173
174                 <% defined($opt{'html_form'}) 
175                      ? ( ref($opt{'html_form'})
176                            ? &{$opt{'html_form'}}()
177                            : $opt{'html_form'}
178                        )
179                      : ''
180                 %>
181
182 %             }
183
184               <% include('/elements/table-grid.html') %>
185
186                 <TR>
187 %                 my $h2 = 0;
188 %                 my $colspan = 0;
189 %                 my @fields = @{ $opt{'sort_fields'} || $opt{'fields'} || [] };
190 %                 my $order_by = $cgi->param('order_by');
191 %                 foreach my $header ( @{ $opt{header} } ) { 
192 %
193 %                   my $field = shift @fields;
194 %
195 %                   $colspan-- if $colspan > 0;
196 %                   next if $colspan;
197 %
198 %                   my $label = ref($header) ? $header->{label} : $header;
199 %                   unless ( ref($field) || !$field ) {
200 %                     if ( $order_by eq $field ) {
201 %                       $cgi->param('order_by', "$field DESC");
202 %                     } else {
203 %                       $cgi->param('order_by', $field);
204 %                     }
205 %                     $label = qq(<A HREF="$self_url?). $cgi->query_string.
206 %                              qq(">$label</A>);
207 %                   }
208 %
209 %                   $colspan = ref($header) ? $header->{colspan} : 0;
210 %                   my $rowspan = 1;
211 %                   my $style = '';
212 %                   if ( $opt{header2} ) {
213 %                     if ( !length($opt{header2}->[$h2]) ) {
214 %                       $rowspan = 2;
215 %                       splice @{ $opt{header2} }, $h2, 1;
216 %                     } else {
217 %                       $h2++;
218 %                       $style = 'STYLE="border-bottom: none"'
219 %                     }
220 %                   }
221                     <TH CLASS   = "grid"
222                         BGCOLOR = "#cccccc"
223                         ROWSPAN = "<% $rowspan %>"
224                         <% $colspan ? 'COLSPAN = "'.$colspan.'"' : '' %>
225                         <% $style %>
226
227                     >
228                       <% $label %>
229                     </TH>
230 %                 } 
231                 </TR>
232
233 %               if ( $opt{header2} ) {
234                   <TR>
235 %                   foreach my $header ( @{ $opt{header2} } ) { 
236 %                     my $label = ref($header) ? $header->{label} : $header;
237                       <TH CLASS="grid" BGCOLOR="#cccccc">
238                         <FONT SIZE="-1"><% $label %></FONT>
239                       </TH>
240 %                   } 
241                   </TR>
242 %               }
243
244 %               my $bgcolor1 = '#eeeeee';
245 %               my $bgcolor2 = '#ffffff';
246 %               my $bgcolor;
247 %
248 %               foreach my $row ( @$rows ) {
249 %
250 %                 if ( $bgcolor eq $bgcolor1 ) {
251 %                   $bgcolor = $bgcolor2;
252 %                 } else {
253 %                   $bgcolor = $bgcolor1;
254 %                 }
255
256 %                 my $trid = '';
257 %                   if ( $opt{'link_field' } ) {
258 %                     my $link_field = $opt{'link_field'};
259 %                     if ( ref($link_field) eq 'CODE' ) {
260 %                       $trid = &{$link_field}($row);
261 %                     } else {
262 %                       $trid = $row->$link_field();
263 %                     }
264 %                   }
265                   <TR ID="<%$trid |h%>">
266                       
267
268 %                   if ( $opt{'fields'} ) {
269 %
270 %                     my $links    = $opt{'links'} ? [ @{$opt{'links'}} ] : '';
271 %                     my $onclicks = $opt{'link_onclicks'} ? [ @{$opt{'link_onclicks'}} ] : [];
272 %                     my $tooltips = $opt{'tooltips'} ? [ @{$opt{'tooltips'}} ] : [];
273 %                     my $aligns   = $opt{'align'} ? [ @{$opt{'align'}} ] : '';
274 %                     my $colors   = $opt{'color'} ? [ @{$opt{'color'}} ] : [];
275 %                     my $sizes    = $opt{'size'}  ? [ @{$opt{'size'}}  ] : [];
276 %                     my $styles   = $opt{'style'} ? [ @{$opt{'style'}} ] : [];
277 %                     my $cstyles  = $opt{'cell_style'} ? [ @{$opt{'cell_style'}} ] : [];
278 %
279 %                     foreach my $field (
280 %
281 %                       map {
282 %                             if ( ref($_) eq 'ARRAY' ) {
283 %
284 %                               my $tableref = $_;
285 %
286 %                               '<TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%">'.
287 %
288 %                               join('', map {
289 %
290 %                                 my $rowref = $_;
291 %
292 %                                 '<tr>'.
293 %
294 %                                 join('', map {
295 %
296 %                                   my $e = $_;
297 %
298 %                                   '<TD '.
299 %                                     join(' ', map {
300 %                                       uc($_).'="'. $e->{$_}. '"';
301 %                                     }
302 %                                     grep exists($e->{$_}),
303 %                                          qw( align bgcolor colspan rowspan
304 %                                              style valign width )
305 %                                     ).
306 %                                   '>'.
307 %
308 %                                   ( $e->{'link'}
309 %                                       ? '<A HREF="'. $e->{'link'}. '">'
310 %                                       : ''
311 %                                   ).
312 %                                   ( $e->{'onclick'} # don't use with 'link'
313 %                                       ? '<A HREF="#" onclick="' .
314 %                                         $e->{'onclick'}.'">'
315 %                                       : ''
316 %                                   ).
317 %                                   ( $e->{'size'}
318 %                                      ? '<FONT SIZE="'.uc($e->{'size'}).'">'
319 %                                      : ''
320 %                                   ).
321 %                                   ( $e->{'data_style'}
322 %                                       ? '<'. uc($e->{'data_style'}). '>'
323 %                                       : ''
324 %                                   ).
325 %                                   $e->{'data'}.
326 %                                   ( $e->{'data_style'}
327 %                                       ? '</'. uc($e->{'data_style'}). '>'
328 %                                       : ''
329 %                                   ).
330 %                                   ( $e->{'size'} ? '</FONT>' : '' ).
331 %                                   ( $e->{'link'} || $e->{'onclick'} 
332 %                                       ? '</A>'
333 %                                       : '' ).
334 %                                   '</td>';
335 %
336 %                                 } @$rowref ).
337 %
338 %                                 '</tr>';
339 %                               } @$tableref ).
340 %
341 %                               '</table>';
342 %
343 %                             } else {
344 %                               $_;
345 %                             }
346 %                           }
347 %
348 %                       map {
349 %                             if ( ref($_) eq 'CODE' ) {
350 %                               &{$_}($row);
351 %                             } elsif ( ref($row) eq 'ARRAY' and 
352 %                                       $_ =~ /^\d+$/ ) {
353 %                             # for the 'straight SQL' case: specify fields
354 %                             # by position
355 %                               encode_entities($row->[$_]);
356 %                             } else {
357 %                               encode_entities($row->$_());
358 %                             }
359 %                           }
360 %                       @{$opt{'fields'}}
361 %
362 %                     ) {
363 %
364 %#                       my $class = ( $field =~ /^<TABLE/i ) ? 'inv' : 'grid';
365 %                       my $class = 'grid';
366 %
367 %                       my $align = $aligns ? shift @$aligns : '';
368 %                       $align = " ALIGN=$align" if $align;
369 %
370 %                       my $a = '';
371 %                       if ( $links ) {
372 %                         my $link = shift @$links;
373 %                         my $onclick = shift @$onclicks;
374 %                         my $tooltip = shift @$tooltips;
375 %
376 %                         if (    ! $opt{'agent_virt'}
377 %                              || ( $null_link && ! $row->agentnum )
378 %                              || grep { $row->agentnum == $_ }
379 %                                      @link_agentnums
380 %                            ) {
381 %        
382 %                           $link = &{$link}($row)
383 %                             if ref($link) eq 'CODE';
384 %
385 %                           $onclick = &{$onclick}($row)
386 %                             if ref($onclick) eq 'CODE';
387 %                           $onclick = qq( onClick="$onclick") if $onclick;
388 %
389 %                           $tooltip = &{$tooltip}($row)
390 %                             if ref($tooltip) eq 'CODE';
391 %                           $tooltip = qq! id="a$id" !.
392 %                             qq! onmouseover="return overlib(!.
393 %                             $m->interp->apply_escapes($tooltip, 'h', 'js_string').
394 %                             qq!, FGCLASS, 'tooltip', REF, 'a$id', !.
395 %                             qq!REFC, 'LL', REFP, 'UL')"! if $tooltip;
396 %
397 %                           if ( $link ) {
398 %                             my( $url, $method ) = @{$link};
399 %                             if ( ref($method) eq 'CODE' ) {
400 %                               $a = $url. &{$method}($row);
401 %                             } else {
402 %                               $a = $url. $row->$method();
403 %                             }
404 %                             $a = qq(<A HREF="$a"$onclick$tooltip>);
405 %                           }
406 %                           elsif ( $onclick ) {
407 %                             $a = qq(<A HREF="javascript:void(0);"$onclick>);
408 %                           }
409 %                           elsif ( $tooltip ) {
410 %                             $a = qq(<A $tooltip>);
411 %                           }
412 %                           $id++;
413
414 %                         }
415 %
416 %                       }
417 %
418 %                       my $font = '';
419 %                       my $color = shift @$colors;
420 %                       $color = &{$color}($row) if ref($color) eq 'CODE';
421 %                       my $size = shift @$sizes;
422 %                       $size = &{$size}($row) if ref($size) eq 'CODE';
423 %                       if ( $color || $size ) {
424 %                         $font = '<FONT '.
425 %                                 ( $color ? "COLOR=#$color "   : '' ).
426 %                                 ( $size  ? qq(SIZE="$size" )  : '' ).
427 %                                 '>';
428 %                       }
429 %
430 %                       my($s, $es) = ( '', '' );
431 %                       my $style = shift @$styles;
432 %                       $style = &{$style}($row) if ref($style) eq 'CODE';
433 %                       if ( $style ) {
434 %                         $s = join( '', map "<$_>", split('', $style) );
435 %                         $es = join( '', map "</$_>", split('', $style) );
436 %                       }
437 %
438 %                       my $cstyle = shift @$cstyles;
439 %                       $cstyle = &{$cstyle}($row) if ref($cstyle) eq 'CODE';
440 %                       $cstyle = qq(STYLE="$cstyle")
441 %                         if $cstyle;
442
443                         <TD CLASS="<% $class %>" BGCOLOR="<% $bgcolor %>" <% $align %> <% $cstyle %>><% $font %><% $a %><% $s %><% $field %><% $es %><% $a ? '</A>' : '' %><% $font ? '</FONT>' : '' %></TD>
444
445 %                     } 
446 %
447 %                   } else { 
448 %
449 %                     foreach ( @$row ) { 
450                         <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $_ %></TD>
451 %                     }
452 %
453 %                   }
454
455                   </TR>
456
457 %               } 
458
459 %               if ( $opt{'footer'} ) {
460
461                   <TR>
462
463 %                   foreach my $footer ( @{ $opt{'footer'} } ) { 
464 %                     $footer = &{$footer}() if ref($footer) eq 'CODE';
465                       <TD CLASS="grid" BGCOLOR="#dddddd" STYLE="border-top: dashed 1px black;"><i><% $footer %></i></TD>
466 %                   } 
467
468                   </TR>
469 %               } 
470             
471               </TABLE>
472
473               <% $pager %>
474   
475             </TD>
476           </TR>
477         </TABLE>
478 %     }
479
480 %     if ( $type eq 'html-print' ) {
481 %       unless ( $opt{nohtmlheader} ) {
482
483         </BODY></HTML>
484       
485 %       }
486 %     } else {
487
488         <% defined($opt{'html_foot'}) 
489               ? ( ref($opt{'html_foot'})
490                     ? &{$opt{'html_foot'}}()
491                     : $opt{'html_foot'}
492                 )
493               : ''
494         %>
495
496         <% $opt{nohtmlheader}
497              ? ''
498              : include( '/elements/footer.html' )
499         %>
500
501 %     }
502
503 %   } 
504 <%init>
505
506 my $curuser = $FS::CurrentUser::CurrentUser;
507
508 my %args = @_;
509 my $type           = $args{'type'};
510 my $header         = $args{'header'};
511 my $rows           = $args{'rows'};
512 my @link_agentnums = @{ $args{'link_agentnums'} };
513 my $null_link      = $args{'null_link'};
514 my $confmax        = $args{'confmax'};
515 my $maxrecords     = $args{'maxrecords'};
516 my $offset         = $args{'offset'};
517 my %opt            = %{ $args{'opt'} };
518 my $self_url       = $opt{'url'} || $cgi->url('-path_info' => 1, '-full' =>1);
519
520 my $count_sth = dbh->prepare($opt{'count_query'})
521   or die "Error preparing $opt{'count_query'}: ". dbh->errstr;
522 $count_sth->execute
523   or die "Error executing $opt{'count_query'}: ". $count_sth->errstr;
524 my $count_arrayref = $count_sth->fetchrow_arrayref;
525 my $total = $count_arrayref->[0];
526
527 my $id = 0;
528 </%init>