Update httemplate/elements/selectlayers.html
[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                   <TR>
257
258 %                   if ( $opt{'fields'} ) {
259 %
260 %                     my $links    = $opt{'links'} ? [ @{$opt{'links'}} ] : '';
261 %                     my $onclicks = $opt{'link_onclicks'} ? [ @{$opt{'link_onclicks'}} ] : [];
262 %                     my $aligns   = $opt{'align'} ? [ @{$opt{'align'}} ] : '';
263 %                     my $colors   = $opt{'color'} ? [ @{$opt{'color'}} ] : [];
264 %                     my $sizes    = $opt{'size'}  ? [ @{$opt{'size'}}  ] : [];
265 %                     my $styles   = $opt{'style'} ? [ @{$opt{'style'}} ] : [];
266 %                     my $cstyles  = $opt{'cell_style'} ? [ @{$opt{'cell_style'}} ] : [];
267 %
268 %                     foreach my $field (
269 %
270 %                       map {
271 %                             if ( ref($_) eq 'ARRAY' ) {
272 %
273 %                               my $tableref = $_;
274 %
275 %                               '<TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%">'.
276 %
277 %                               join('', map {
278 %
279 %                                 my $rowref = $_;
280 %
281 %                                 '<tr>'.
282 %
283 %                                 join('', map {
284 %
285 %                                   my $e = $_;
286 %
287 %                                   '<TD '.
288 %                                     join(' ', map {
289 %                                       uc($_).'="'. $e->{$_}. '"';
290 %                                     }
291 %                                     grep exists($e->{$_}),
292 %                                          qw( align bgcolor colspan rowspan
293 %                                              style valign width )
294 %                                     ).
295 %                                   '>'.
296 %
297 %                                   ( $e->{'link'}
298 %                                       ? '<A HREF="'. $e->{'link'}. '">'
299 %                                       : ''
300 %                                   ).
301 %                                   ( $e->{'onclick'} # don't use with 'link'
302 %                                       ? '<A HREF="#" onclick="' .
303 %                                         $e->{'onclick'}.'">'
304 %                                       : ''
305 %                                   ).
306 %                                   ( $e->{'size'}
307 %                                      ? '<FONT SIZE="'.uc($e->{'size'}).'">'
308 %                                      : ''
309 %                                   ).
310 %                                   ( $e->{'data_style'}
311 %                                       ? '<'. uc($e->{'data_style'}). '>'
312 %                                       : ''
313 %                                   ).
314 %                                   $e->{'data'}.
315 %                                   ( $e->{'data_style'}
316 %                                       ? '</'. uc($e->{'data_style'}). '>'
317 %                                       : ''
318 %                                   ).
319 %                                   ( $e->{'size'} ? '</FONT>' : '' ).
320 %                                   ( $e->{'link'} || $e->{'onclick'} 
321 %                                       ? '</A>'
322 %                                       : '' ).
323 %                                   '</td>';
324 %
325 %                                 } @$rowref ).
326 %
327 %                                 '</tr>';
328 %                               } @$tableref ).
329 %
330 %                               '</table>';
331 %
332 %                             } else {
333 %                               $_;
334 %                             }
335 %                           }
336 %
337 %                       map {
338 %                             if ( ref($_) eq 'CODE' ) {
339 %                               &{$_}($row);
340 %                             } elsif ( ref($row) eq 'ARRAY' and 
341 %                                       $_ =~ /^\d+$/ ) {
342 %                             # for the 'straight SQL' case: specify fields
343 %                             # by position
344 %                               encode_entities($row->[$_]);
345 %                             } else {
346 %                               encode_entities($row->$_());
347 %                             }
348 %                           }
349 %                       @{$opt{'fields'}}
350 %
351 %                     ) {
352 %
353 %#                       my $class = ( $field =~ /^<TABLE/i ) ? 'inv' : 'grid';
354 %                       my $class = 'grid';
355 %
356 %                       my $align = $aligns ? shift @$aligns : '';
357 %                       $align = " ALIGN=$align" if $align;
358 %
359 %                       my $a = '';
360 %                       if ( $links ) {
361 %                         my $link = shift @$links;
362 %                         my $onclick = shift @$onclicks;
363 %
364 %                         if (    ! $opt{'agent_virt'}
365 %                              || ( $null_link && ! $row->agentnum )
366 %                              || grep { $row->agentnum == $_ }
367 %                                      @link_agentnums
368 %                            ) {
369 %        
370 %                           $link = &{$link}($row)
371 %                             if ref($link) eq 'CODE';
372 %
373 %                           $onclick = &{$onclick}($row)
374 %                             if ref($onclick) eq 'CODE';
375 %                           $onclick = qq( onClick="$onclick") if $onclick;
376 %
377 %                           if ( $link ) {
378 %                             my( $url, $method ) = @{$link};
379 %                             if ( ref($method) eq 'CODE' ) {
380 %                               $a = $url. &{$method}($row);
381 %                             } else {
382 %                               $a = $url. $row->$method();
383 %                             }
384 %                             $a = qq(<A HREF="$a"$onclick>);
385 %                           }
386 %                           elsif ( $onclick ) {
387 %                             $a = qq(<A HREF="javascript:void(0);"$onclick>);
388 %                           }
389 %                         }
390 %
391 %                       }
392 %
393 %                       my $font = '';
394 %                       my $color = shift @$colors;
395 %                       $color = &{$color}($row) if ref($color) eq 'CODE';
396 %                       my $size = shift @$sizes;
397 %                       $size = &{$size}($row) if ref($size) eq 'CODE';
398 %                       if ( $color || $size ) {
399 %                         $font = '<FONT '.
400 %                                 ( $color ? "COLOR=#$color "   : '' ).
401 %                                 ( $size  ? qq(SIZE="$size" )  : '' ).
402 %                                 '>';
403 %                       }
404 %
405 %                       my($s, $es) = ( '', '' );
406 %                       my $style = shift @$styles;
407 %                       $style = &{$style}($row) if ref($style) eq 'CODE';
408 %                       if ( $style ) {
409 %                         $s = join( '', map "<$_>", split('', $style) );
410 %                         $es = join( '', map "</$_>", split('', $style) );
411 %                       }
412 %
413 %                       my $cstyle = shift @$cstyles;
414 %                       $cstyle = &{$cstyle}($row) if ref($cstyle) eq 'CODE';
415 %                       $cstyle = qq(STYLE="$cstyle")
416 %                         if $cstyle;
417
418                         <TD CLASS="<% $class %>" BGCOLOR="<% $bgcolor %>" <% $align %> <% $cstyle %>><% $font %><% $a %><% $s %><% $field %><% $es %><% $a ? '</A>' : '' %><% $font ? '</FONT>' : '' %></TD>
419
420 %                     } 
421 %
422 %                   } else { 
423 %
424 %                     foreach ( @$row ) { 
425                         <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $_ %></TD>
426 %                     }
427 %
428 %                   }
429
430                   </TR>
431
432 %               } 
433
434 %               if ( $opt{'footer'} ) {
435
436                   <TR>
437
438 %                   foreach my $footer ( @{ $opt{'footer'} } ) { 
439 %                     $footer = &{$footer}() if ref($footer) eq 'CODE';
440                       <TD CLASS="grid" BGCOLOR="#dddddd" STYLE="border-top: dashed 1px black;"><i><% $footer %></i></TD>
441 %                   } 
442
443                   </TR>
444 %               } 
445             
446               </TABLE>
447
448               <% $pager %>
449   
450             </TD>
451           </TR>
452         </TABLE>
453 %     }
454
455 %     if ( $type eq 'html-print' ) {
456 %       unless ( $opt{nohtmlheader} ) {
457
458         </BODY></HTML>
459       
460 %       }
461 %     } else {
462
463         <% defined($opt{'html_foot'}) 
464               ? ( ref($opt{'html_foot'})
465                     ? &{$opt{'html_foot'}}()
466                     : $opt{'html_foot'}
467                 )
468               : ''
469         %>
470
471         <% $opt{nohtmlheader}
472              ? ''
473              : include( '/elements/footer.html' )
474         %>
475
476 %     }
477
478 %   } 
479 <%init>
480
481 my $curuser = $FS::CurrentUser::CurrentUser;
482
483 my %args = @_;
484 my $type           = $args{'type'};
485 my $header         = $args{'header'};
486 my $rows           = $args{'rows'};
487 my @link_agentnums = @{ $args{'link_agentnums'} };
488 my $null_link      = $args{'null_link'};
489 my $confmax        = $args{'confmax'};
490 my $maxrecords     = $args{'maxrecords'};
491 my $offset         = $args{'offset'};
492 my %opt            = %{ $args{'opt'} };
493 my $self_url       = $opt{'url'} || $cgi->url('-path_info' => 1, '-full' =>1);
494
495 my $count_sth = dbh->prepare($opt{'count_query'})
496   or die "Error preparing $opt{'count_query'}: ". dbh->errstr;
497 $count_sth->execute
498   or die "Error executing $opt{'count_query'}: ". $count_sth->errstr;
499 my $count_arrayref = $count_sth->fetchrow_arrayref;
500 my $total = $count_arrayref->[0];
501
502 </%init>