b2c977ad24d85524d48e139883907ecece4524ea
[freeside.git] / httemplate / search / cust_main.cgi
1 % if ( scalar(@cust_main) == 1 && ! $cgi->param('referral_custnum') ) {
2 %  if ( $cgi->param('quickpay') eq 'yes' ) {
3     <% $cgi->redirect(popurl(2). "edit/cust_pay.cgi?quickpay=yes;custnum=". $cust_main[0]->custnum) %>
4 %  } else {
5     <% $cgi->redirect(popurl(2). "view/cust_main.cgi?". $cust_main[0]->custnum) %>
6 %  }
7 %} elsif ( scalar(@cust_main) == 0 ) {
8 %  errorpage(emt("No matching customers found!"));
9 % } # errorpage quits, so we don't need an 'else' below
10
11 <& /elements/header.html, mt("Customer Search Results"), '' &>
12 % $total ||= scalar(@cust_main); 
13
14 <% mt("[_1] matching customers found",$total) |h %>
15
16 % my $pager = include( '/elements/pager.html',
17 %                        'offset'     => $offset,
18 %            'num_rows'   => scalar(@cust_main),
19 %            'total'      => $total,
20 %            'maxrecords' => $maxrecords,
21 %                    );
22
23 %  unless ( $cgi->param('cancelled') ) {
24 %    my $linklabel = '';
25 %    if ( $cgi->param('showcancelledcustomers') eq '0' #see if it was set by me
26 %         || ( $conf->exists('hidecancelledcustomers')
27 %              && ! $cgi->param('showcancelledcustomers')
28 %            )
29 %       ) {
30 %      $cgi->param('showcancelledcustomers', 1);
31 %      $linklabel = 'show';
32 %    } else {
33 %      $cgi->param('showcancelledcustomers', 0);
34 %      $linklabel = 'hide';
35 %    }
36 %    $cgi->param('offset', 0);
37         ( <a href="<% $cgi->self_url %>"><% mt("$linklabel canceled customers") |h %></a> )
38 %  }
39
40 %  if ( $cgi->param('referral_custnum') ) {
41 %    $cgi->param('referral_custnum') =~ /^(\d+)$/
42 %      or errorpage(emt("Illegal referral_custnum"));
43 %    my $referral_custnum = $1;
44 %    my $cust_main = qsearchs('cust_main', { custnum => $referral_custnum } );
45     <SCRIPT>
46         function changed(what) {
47             what.form.submit();
48         }
49     </SCRIPT>
50
51 % # XXX: translate this section...hard due to "referrals of CUST SELECT levels deep" construction
52     <FORM METHOD="GET">
53         <INPUT TYPE="hidden" NAME="referral_custnum" VALUE="<% $referral_custnum %>">
54 %   my $refcustlabel = "$referral_custnum: " .
55 %         ( $cust_main->company || $cust_main->last. ', '. $cust_main->first );
56         referrals of
57         <A HREF="<% popurl(2)."view/cust_main.cgi?$referral_custnum" %>"><% $refcustlabel |h %></A>
58         <SELECT NAME="referral_depth" SIZE="1" onChange="changed(this)">';
59
60 %    my $max = 8;
61 %    $cgi->param('referral_depth') =~ /^(\d*)$/ 
62 %      or errorpage(emt("Illegal referral_depth"));
63 %    my $referral_depth = $1;
64
65 %    foreach my $depth ( 1 .. $max ) {
66 %       my $selected = ($depth == $referral_depth) ? 'SELECTED' : '';
67         <OPTION <% $selected %>><% $depth %>
68 %    }
69     </SELECT> levels deep
70     </FORM>
71 %  }
72
73 %  my @custom_priorities = ();
74 %  if ( $conf->config('ticket_system-custom_priority_field')
75 %       && @{[ $conf->config('ticket_system-custom_priority_field-values') ]} ) {
76 %    @custom_priorities =
77 %      $conf->config('ticket_system-custom_priority_field-values');
78 %  }
79
80   <BR><BR><% $pager.include('/elements/table-grid.html') %>
81       <TR>
82         <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('#') |h %></TH>
83         <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Status') |h %></TH>
84         <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Name') |h %></TH>
85         <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Company') |h %></TH>
86
87 %foreach my $addl_header ( @addl_headers ) {
88     <TH CLASS="grid" BGCOLOR="#cccccc"><% $addl_header %></TH>
89 %}
90
91         <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Packages') |h %></TH>
92         <TH CLASS="grid" BGCOLOR="#cccccc" COLSPAN="2"><% mt('Services') |h %></TH>
93      </TR>
94
95 %  my $bgcolor1 = '#eeeeee';
96 %  my $bgcolor2 = '#ffffff';
97 %  my $bgcolor;
98 %
99 %  my(%saw,$cust_main);
100 %  foreach $cust_main (
101 %    sort $sortby grep(!$saw{$_->custnum}++, @cust_main)
102 %  ) {
103 %
104 %    if ( $bgcolor eq $bgcolor1 ) {
105 %      $bgcolor = $bgcolor2;
106 %    } else {
107 %      $bgcolor = $bgcolor1;
108 %    }
109 %
110 %    my($custnum,$last,$first,$company)=(
111 %      $cust_main->custnum,
112 %      $cust_main->getfield('last'),
113 %      $cust_main->getfield('first'),
114 %      $cust_main->company,
115 %    );
116 %
117 %    my @all_cust_svc;
118 %    my @pkg_rowspans;
119 %    foreach my $cust_pkg ( @{$all_pkgs{$custnum}} ) {
120 %      my %cust_svc_by_svcpart;
121 %      my $rows = 0;
122 %      #local($FS::part_pkg::cache_enabled) = 1; #for $cust_pkg->part_svc
123 %      local($FS::cust_svc::cache_enabled) = 1; #for $cust_svc->part_svc
124 %      #local($FS::pkg_svc::cache_enabled) = 1; #for $pkg_svc->part_svc
125 %      foreach my $part_svc (
126 %        #$cust_pkg->part_svc( summarize_size=>$large_pkg_size )
127 %        qsearch({
128 %          'select'      => 'part_svc.*, COUNT(*) AS num_cust_svc',
129 %          'table'       => 'part_svc', 
130 %          'addl_from'   => 'LEFT JOIN cust_svc USING ( svcpart )',
131 %          'extra_sql'   => 'WHERE pkgnum = ? '.
132 %                           ' GROUP BY '. join(', ',
133 %                             map "part_svc.$_", fields('part_svc')
134 %                           ),
135 %          'extra_param' => [ [$cust_pkg->pkgnum,'int'] ],
136 %        })
137 %      ) {
138 %        my $svcpart = $part_svc->svcpart;
139 %        my $num_cust_svc = $part_svc->num_cust_svc;
140 %        if ( $large_pkg_size > 0 and $num_cust_svc >= $large_pkg_size ) {
141 %          # don't retrieve the cust_svc records, just stash the 
142 %          # part_svc and num_cust_svc for later
143 %          $cust_svc_by_svcpart{$svcpart} = 
144 %            [ 'summarize', $part_svc, $num_cust_svc ];
145 %          $rows += 2;
146 %        }
147 %        elsif ( $num_cust_svc ) {
148 %          #$cust_svc_by_svcpart{$svcpart} = $part_svc->cust_pkg_svc;
149 %          #further optimization opportunities: don't need to re-pull in another $part_svc object, sorting this is expensive, etc.
150 %          $cust_svc_by_svcpart{$svcpart} = [ $cust_pkg->cust_svc($part_svc->svcpart) ];
151 %          $rows += $num_cust_svc;
152 %        } #if summarize
153 %      } #foreach $part_svc
154 %      $rows ||= 1; # in case the package has no services
155 %      push @all_cust_svc, \%cust_svc_by_svcpart;
156 %      push @pkg_rowspans, $rows;
157 %    } #foreach $cust_pkg
158 %    my $rowspan = List::Util::sum(@pkg_rowspans) || 1;
159 %
160 %    my $view;
161 %    if ( defined $cgi->param('quickpay') && $cgi->param('quickpay') eq 'yes' ) {
162 %      $view = $p. 'edit/cust_pay.cgi?quickpay=yes;custnum='. $custnum;
163 %    } else {
164 %      $view = $p. 'view/cust_main.cgi?'. $custnum;
165 %    }
166 %    my $pcompany = $company
167 %      ? qq!<A HREF="$view"><FONT SIZE=-1>!. encode_entities($company). '</FONT></A>'
168 %      : '<FONT SIZE=-1>&nbsp;</FONT>';
169 %    
170 %    my $status = $cust_main->status;
171 %    my $statuscol = $cust_main->statuscolor;
172
173     <TR>
174       <TD CLASS="grid" ALIGN="right" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %>>
175         <A HREF="<% $view %>"><FONT SIZE=-1><% $cust_main->display_custnum %></FONT></A>
176       </TD>
177       <TD CLASS="grid" ALIGN="center" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %>>
178         <FONT SIZE="-1" COLOR="#<% $statuscol %>"><B><% ucfirst($status) %></B></FONT>
179       </TD>
180       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %>>
181         <A HREF="<% $view %>"><FONT SIZE=-1><% "$last, $first" |h %></FONT></A>
182       </TD>
183       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %>>
184         <% $pcompany %>
185       </TD>
186
187 %    foreach my $addl_col ( @addl_cols ) { 
188 % if ( $addl_col eq 'tickets' ) { 
189 % if ( @custom_priorities ) { 
190
191         <TD CLASS="inv" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %> ALIGN=right>
192             <FONT SIZE=-1>
193                <TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0>
194 % foreach my $priority ( @custom_priorities, '' ) { 
195 %                    my $num =
196 %                      FS::TicketSystem->num_customer_tickets($custnum,$priority);
197 %                    my $ahref = '';
198 %                    $ahref= '<A HREF="'.
199 %                            FS::TicketSystem->href_customer_tickets($custnum,$priority).
200 %                            '">'
201 %                      if $num;
202         
203                  <TR>
204                    <TD ALIGN=right>
205                      <FONT SIZE=-1><% $ahref.$num %></A></FONT>
206                    </TD>
207                    <TD ALIGN=left>
208                      <FONT SIZE=-1><% $ahref %><% $priority || '<i>('.emt('none').')</i>' %></A></FONT>
209                    </TD>
210                  </TR>
211 % } 
212
213              <TR>
214                <TH ALIGN=right STYLE="border-top: dashed 1px black">
215                <FONT SIZE=-1>
216 % } else { 
217           <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %> ALIGN=right>
218             <FONT SIZE=-1>
219 % } 
220 %           my $ahref = '';
221 %           $ahref = '<A HREF="'.
222 %                       FS::TicketSystem->href_customer_tickets($custnum).
223 %                       '">'
224 %             if $cust_main->get($addl_col);
225 %        
226
227         <% $ahref %><% $cust_main->get($addl_col) %></A>
228 % if ( @custom_priorities ) { 
229
230           </FONT></TH>
231             <TH ALIGN=left STYLE="border-top: dashed 1px black">
232               <FONT SIZE=-1><% ${ahref} %>Total</A><FONT>
233             </TH>
234           </TR>
235           </TABLE>
236 % } 
237
238         </FONT></TD>
239 % } else { 
240
241         <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %> ALIGN=right><FONT SIZE=-1>
242           <% $cust_main->get($addl_col) %>
243         </FONT></TD>
244
245 %      }
246 %    }
247
248 %    my $n1 = '';
249 %    foreach ( @{$all_pkgs{$custnum}} ) {
250 %      local($FS::cust_svc::cache_enabled) = 1; #for $cust_svc->part_svc
251 %      my $pkgnum = $_->pkgnum;
252 %      my $part_pkg = $_->part_pkg;
253 %
254 %      my $pkg_comment = $part_pkg->pkg_comment( nopkgpart=>1 );
255 %      my $show = $default_customer_view =~ /^(jumbo|packages)$/
256 %                   ? ''
257 %                   : ';show=packages';
258 %      my $frag = "cust_pkg$pkgnum"; #hack for IE ignoring real #fragment
259 %      my $pkgview = "${p}view/cust_main.cgi?custnum=$custnum$show;fragment=$frag#$frag";
260 %      # cust_svc stuff, built earlier
261 %      my %cust_svc_by_svcpart = %{ shift @all_cust_svc };
262 %      my $pkg_rowspan = shift @pkg_rowspans;
263
264         <% $n1 %><TD CLASS="grid" BGCOLOR="<% $bgcolor %>"  ROWSPAN="<% $pkg_rowspan%>">
265             <A HREF="<% $pkgview %>"><FONT SIZE=-1><% $pkg_comment |h %></FONT></A>
266         </TD>
267
268 %       my $n2 = '';
269 %       my $td = '<TD CLASS="grid" BGCOLOR="'.$bgcolor.'">';
270 %
271 %       foreach my $svcpart ( sort keys %cust_svc_by_svcpart ) { #sort order?
272 %         my $these = $cust_svc_by_svcpart{$svcpart};
273 %         if ( $these->[0] eq 'summarize' ) {
274 %           my $part_svc = $these->[1];
275 %           my $num_cust_svc = $these->[2];
276         <% $n2 %>
277 %           # summarize
278 %           # link opens a new search for this pkgnum/svcpart combo
279 %           my $href = $p.'search/cust_pkg_svc.html?svcpart='.$svcpart.
280 %                     ';pkgnum='.$pkgnum;
281           <% $td %>
282             <A HREF="<% $href %>"><% $part_svc->svc %></A>
283           </TD>
284           <% $td %>
285             <A HREF="<% $href %>"><B>(<% mt("view all [_1]", $num_cust_svc) |h %>)</B></A>
286           </TD>
287         </TR><TR>
288           <% $td %></TD>
289           <% $td %><& /elements/search-cust_svc.html, 
290                     'svcpart' => $svcpart,
291                     'pkgnum'  => $pkgnum,
292                     'svcdb'   => $part_svc->svcdb,
293                     &></TD>
294 %           $n2="</TR><TR>";
295 %         }
296 %         elsif ( scalar @$these ) { # do not summarize
297 %           foreach my $cust_svc ( @$these ) {
298 %             my $part_svc = $cust_svc->part_svc;
299           <% $n2 %>
300             <% $td %>
301                 <% FS::UI::Web::svc_link($m, $part_svc, $cust_svc) %>
302             </TD> 
303             <% $td %>
304                 <% FS::UI::Web::svc_label_link($m, $part_svc, $cust_svc) %>
305             </TD>
306 %             $n2="</TR><TR>";
307 %           } #foreach $cust_svc
308 %         }
309 %       } # foreach $svcpart
310 %
311 %      unless ( %cust_svc_by_svcpart ) {
312             <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" COLSPAN=2>&nbsp;</TD>
313 %      }
314 %
315 %      $n1="</TR><TR>";
316 %    }
317 %
318 %    unless ( @{$all_pkgs{$custnum}} ) {
319         <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" COLSPAN=3>&nbsp;</TD>
320 %    }
321 %    
322     </TR>
323 %  }
324  
325   </TABLE><% $pager %>
326
327   <& /elements/footer.html &>
328 <%init>
329 my $curuser = $FS::CurrentUser::CurrentUser;
330
331 die "access denied"
332   unless $curuser->access_right('List all customers');
333
334 my $conf = new FS::Conf;
335 my $maxrecords = $conf->config('maxsearchrecordsperpage') || 100;
336 # summarize more than this many services of the same svcpart
337 my $large_pkg_size = $conf->config('cust_pkg-large_pkg_size') || 0;
338
339 my $default_customer_view = $curuser->default_customer_view;
340
341 my $limit = '';
342 $limit .= "LIMIT $maxrecords" if $maxrecords;
343
344 my $offset = $cgi->param('offset') || 0;
345 $limit .= " OFFSET $offset" if $offset;
346
347 my $total = 0;
348
349 my(@cust_main, $sortby, $orderby);
350 my @select = ();
351 my @addl_headers = ();
352 my @addl_cols = ();
353 if ( $cgi->param('browse')
354      || $cgi->param('otaker_on')
355      || $cgi->param('agentnum_on')
356 ) {
357
358   my %search = ();
359
360   if ( $cgi->param('browse') ) {
361     my $query = $cgi->param('browse');
362     if ( $query eq 'custnum' ) {
363       if ( $conf->exists('cust_main-default_agent_custid') ) {
364         $sortby=\*display_custnum_sort;
365         $orderby = "ORDER BY CASE WHEN agent_custid IS NOT NULL
366                                    AND agent_custid != ''
367                                    AND agent_custid ". regexp_sql. " '^[0-9]+\$'
368                              THEN CAST(agent_custid AS BIGINT)
369                              ELSE custnum
370                              END";
371       } else {
372         $sortby=\*custnum_sort;
373         $orderby = "ORDER BY custnum";
374       }
375     } elsif ( $query eq 'last' ) {
376       $sortby=\*last_sort;
377       $orderby = "ORDER BY LOWER(last || ' ' || first)";
378     } elsif ( $query eq 'company' ) {
379       $sortby=\*company_sort;
380       $orderby = "ORDER BY LOWER(company || ' ' || last || ' ' || first )";
381     } elsif ( $query eq 'tickets' ) {
382       $sortby = \*tickets_sort;
383       $orderby = "ORDER BY tickets DESC";
384       push @select, FS::TicketSystem->sql_num_customer_tickets. " as tickets";
385       push @addl_headers, 'Tickets';
386       push @addl_cols, 'tickets';
387     } elsif ( $query eq 'uspsunvalid' ) {
388        $search{'country'} = 'US';
389        $sortby=\*custnum_sort;
390        $orderby = "ORDER BY custnum";
391     } else {
392       die "unknown browse field $query";
393     }
394   } else {
395     $sortby = \*last_sort; #??
396     $orderby = "ORDER BY LOWER(last || ' ' || first)"; #??
397   }
398
399   if ( $cgi->param('otaker_on') ) {
400     die "access denied"
401       unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
402     $cgi->param('otaker') =~ /^(\w{1,32})$/ or errorpage("Illegal otaker");
403     $search{otaker} = $1;
404   } elsif ( $cgi->param('agentnum_on') ) {
405     $cgi->param('agentnum') =~ /^(\d+)$/ or errorpage("Illegal agentnum");
406     $search{agentnum} = $1;
407   }
408
409   my @qual = ();
410
411   my $ncancelled = '';
412
413   if (  $cgi->param('showcancelledcustomers') eq '0' #see if it was set by me
414        || ( $conf->exists('hidecancelledcustomers')
415              && ! $cgi->param('showcancelledcustomers') )
416      ) {
417     push @qual, FS::cust_main->uncancel_sql;
418    }
419
420   push @qual, FS::cust_main->cancel_sql   if $cgi->param('cancelled');
421   push @qual, FS::cust_main->prospect_sql if $cgi->param('prospect');
422   push @qual, FS::cust_main->ordered_sql  if $cgi->param('ordered');
423   push @qual, FS::cust_main->active_sql   if $cgi->param('active');
424   push @qual, FS::cust_main->inactive_sql if $cgi->param('inactive');
425   push @qual, FS::cust_main->susp_sql     if $cgi->param('suspended');
426
427   #EWWWWWW
428   my $qual = join(' AND ',
429             map { "$_ = ". dbh->quote($search{$_}) } keys %search );
430
431   my $addl_qual = join(' AND ', @qual);
432
433   #here is the agent virtualization
434   $addl_qual .= ( $addl_qual ? ' AND ' : '' ).
435                 $FS::CurrentUser::CurrentUser->agentnums_sql;
436
437   if ( $cgi->param('browse') && $cgi->param('browse') eq 'uspsunvalid' ) {
438        $addl_qual .= ' AND ( length(zip) < 9 OR upper(address1) != address1 OR upper(city) != city ) ';
439   }
440
441   if ( $addl_qual ) {
442     $qual .= ' AND ' if $qual;
443     $qual .= $addl_qual;
444   }
445     
446   $qual = " WHERE $qual" if $qual;
447   my $statement = "SELECT COUNT(*) FROM cust_main $qual";
448   my $sth = dbh->prepare($statement) or die dbh->errstr." preparing $statement";
449   $sth->execute or die "Error executing \"$statement\": ". $sth->errstr;
450
451   $total = $sth->fetchrow_arrayref->[0];
452
453   if ( $addl_qual ) {
454     if ( %search ) {
455       $addl_qual = " AND $addl_qual";
456     } else {
457       $addl_qual = " WHERE $addl_qual";
458     }
459   }
460
461   my $select;
462   if ( @select ) {
463     $select = 'cust_main.*, '. join (', ', @select);
464   } else {
465     $select = '*';
466   }
467
468   @cust_main = qsearch('cust_main', \%search, $select,   
469                          "$addl_qual $orderby $limit" );
470
471 } else {
472   @cust_main=();
473   $sortby = \*last_sort;
474
475   push @cust_main, @{&custnumsearch}
476     if $cgi->param('custnum_on') && $cgi->param('custnum_text');
477   push @cust_main, @{&cardsearch}
478     if $cgi->param('card_on') && $cgi->param('card');
479   push @cust_main, @{&lastsearch}
480     if $cgi->param('last_on') && $cgi->param('last_text');
481   push @cust_main, @{&companysearch}
482     if $cgi->param('company_on') && $cgi->param('company_text');
483   push @cust_main, @{&address2search}
484     if $cgi->param('address2_on') && $cgi->param('address2_text');
485   push @cust_main, @{&phonesearch}
486     if $cgi->param('phone_on') && $cgi->param('phone_text');
487   push @cust_main, @{&referralsearch}
488     if $cgi->param('referral_custnum');
489
490   if ( $cgi->param('company_on') && $cgi->param('company_text') ) {
491     $sortby = \*company_sort;
492     push @cust_main, @{&companysearch};
493   }
494
495   if ( $cgi->param('search_cust') ) {
496     $sortby = \*company_sort;
497     $orderby = "ORDER BY LOWER(company || ' ' || last || ' ' || first )";
498     push @cust_main, smart_search(
499       'search'            => scalar($cgi->param('search_cust')),
500       'no_fuzzy_on_exact' => ! ( $curuser->option('enable_fuzzy_on_exact')
501                                  || $conf->exists('enable_fuzzy_on_exact')
502                                ),
503     );
504   }
505
506   @cust_main = grep { $_->status ne 'cancelled' } @cust_main
507     if ! $cgi->param('cancelled')
508        && (
509          $cgi->param('showcancelledcustomers') eq '0' #see if it was set by me
510          || ( $conf->exists('hidecancelledcustomers')
511                && ! $cgi->param('showcancelledcustomers') )
512        );
513
514   my %saw = ();
515   @cust_main = grep { !$saw{$_->custnum}++ } @cust_main;
516 }
517
518 my $pkgs_method = $conf->exists('hidecancelledpackages')
519                     ? 'ncancelled_pkgs'
520                     : 'all_pkgs';
521
522 #false laziness w/httemplate/view/cust_main/packages.html
523 my $select = join(',',
524                'cust_pkg.*',
525                'part_pkg.*',
526                'setup_option.optionvalue AS _opt_setup_fee',
527                'recur_option.optionvalue AS _opt_recur_fee',
528              );
529
530 my $addl_from = qq{
531     LEFT JOIN part_pkg USING ( pkgpart )
532     LEFT JOIN part_pkg_option AS setup_option
533       ON (     cust_pkg.pkgpart = setup_option.pkgpart
534            AND setup_option.optionname = 'setup_fee' )
535     LEFT JOIN part_pkg_option AS recur_option
536       ON (     cust_pkg.pkgpart = recur_option.pkgpart
537            AND recur_option.optionname = 'recur_fee' )
538 };
539
540 local($FS::cust_pkg::cache_enabled) = 1; #for $cust_pkg->part_pkg
541 my %all_pkgs = map { $_->custnum =>
542                        [ $_->$pkgs_method({ select          => $select,
543                                             addl_from       => $addl_from,
544 +                                           skip_label_sort => 1,
545                                          })
546                        ];
547                    }
548                  @cust_main;
549
550 sub last_sort {
551   lc($a->getfield('last')) cmp lc($b->getfield('last'))
552   || lc($a->first) cmp lc($b->first);
553 }
554
555 sub company_sort {
556   return -1 if $a->company && ! $b->company;
557   return 1 if ! $a->company && $b->company;
558   lc($a->company) cmp lc($b->company)
559   || lc($a->getfield('last')) cmp lc($b->getfield('last'))
560   || lc($a->first) cmp lc($b->first);;
561 }
562
563 sub display_custnum_sort {
564   $a->display_custnum <=> $b->display_custnum;
565 }
566
567 sub custnum_sort {
568   $a->getfield('custnum') <=> $b->getfield('custnum');
569 }
570
571 sub tickets_sort {
572   $b->getfield('tickets') <=> $a->getfield('tickets');
573 }
574
575 sub custnumsearch {
576
577   my $custnum = $cgi->param('custnum_text');
578   $custnum =~ s/\D//g;
579   $custnum =~ /^(\d{1,23})$/ or errorpage(emt("Illegal customer number"));
580   $custnum = $1;
581   
582   [ qsearchs('cust_main', { 'custnum' => $custnum } ) ];
583 }
584
585 sub cardsearch {
586
587   my($card)=$cgi->param('card');
588   $card =~ s/\D//g;
589   $card =~ /^(\d{13,16}|\d{8,9})$/ or errorpage(emt("Illegal card number"));
590   my($payinfo)=$1;
591
592   [ qsearch('cust_main',{'payinfo'=>$payinfo, 'payby'=>'CARD'}),
593     qsearch('cust_main',{'payinfo'=>$payinfo, 'payby'=>'DCRD'})
594   ];
595 }
596
597 sub referralsearch {
598   $cgi->param('referral_custnum') =~ /^(\d+)$/
599     or errorpage("Illegal referral_custnum");
600   my $cust_main = qsearchs('cust_main', { 'custnum' => $1 } )
601     or errorpage(emt("Customer [_1] not found",$1));
602   my $depth;
603   if ( $cgi->param('referral_depth') ) {
604     $cgi->param('referral_depth') =~ /^(\d+)$/
605       or errorpage(emt("Illegal referral_depth"));
606     $depth = $1;
607   } else {
608     $depth = 1;
609   }
610   [ $cust_main->referral_cust_main($depth) ];
611 }
612
613 sub lastsearch {
614   my(%last_type);
615   my @cust_main;
616   foreach ( $cgi->param('last_type') ) {
617     $last_type{$_}++;
618   }
619
620   $cgi->param('last_text') =~ /^([\w \,\.\-\']*)$/
621     or errorpage(emt("Illegal last name"));
622   my($last)=$1;
623
624   if ( $last_type{'Exact'} || $last_type{'Fuzzy'} ) {
625     push @cust_main, qsearch( 'cust_main',
626                               { 'last' => { 'op'    => 'ILIKE',
627                                             'value' => $last    } } );
628
629     push @cust_main, qsearch( 'cust_main',
630                               { 'ship_last' => { 'op'    => 'ILIKE',
631                                                  'value' => $last    } } )
632       if defined dbdef->table('cust_main')->column('ship_last');
633   }
634
635   if ( $last_type{'Substring'} || $last_type{'All'} ) {
636
637     push @cust_main, qsearch( 'cust_main',
638                               { 'last' => { 'op'    => 'ILIKE',
639                                             'value' => "%$last%" } } );
640
641     push @cust_main, qsearch( 'cust_main',
642                               { 'ship_last' => { 'op'    => 'ILIKE',
643                                                  'value' => "%$last%" } } )
644       if defined dbdef->table('cust_main')->column('ship_last');
645
646   }
647
648   if ( $last_type{'Fuzzy'} || $last_type{'All'} ) {
649     push @cust_main, FS::cust_main::Search->fuzzy_search( { 'last' => $last } );
650   }
651
652   \@cust_main;
653 }
654
655 sub companysearch {
656
657   my(%company_type);
658   my @cust_main;
659   foreach ( $cgi->param('company_type') ) {
660     $company_type{$_}++ 
661   };
662
663   $cgi->param('company_text') =~
664     /^([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=]*)$/
665       or errorpage(emt("Illegal company"));
666   my $company = $1;
667
668   if ( $company_type{'Exact'} || $company_type{'Fuzzy'} ) {
669     push @cust_main, qsearch( 'cust_main',
670                               { 'company' => { 'op'    => 'ILIKE',
671                                                'value' => $company } } );
672
673     push @cust_main, qsearch( 'cust_main',
674                               { 'ship_company' => { 'op'    => 'ILIKE',
675                                                     'value' => $company } } )
676       if defined dbdef->table('cust_main')->column('ship_last');
677   }
678
679   if ( $company_type{'Substring'} || $company_type{'All'} ) {
680
681     push @cust_main, qsearch( 'cust_main',
682                               { 'company' => { 'op'    => 'ILIKE',
683                                                'value' => "%$company%" } } );
684
685     push @cust_main, qsearch( 'cust_main',
686                               { 'ship_company' => { 'op'    => 'ILIKE',
687                                                     'value' => "%$company%" } })
688       if defined dbdef->table('cust_main')->column('ship_last');
689
690   }
691
692   if ( $company_type{'Fuzzy'} || $company_type{'All'} ) {
693     push @cust_main, FS::cust_main::Search->fuzzy_search( { 'company' => $company } );
694   }
695
696   if ($company_type{'Sound-alike'}) {
697   }
698
699   \@cust_main;
700 }
701
702 sub address2search {
703   my @cust_main;
704
705   $cgi->param('address2_text') =~
706     /^([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=]*)$/
707       or errorpage(emt("Illegal address2"));
708   my $address2 = $1;
709
710   # matching at the start or end of an address, but not in the middle
711   my @where;
712   foreach my $toggle (0,1) {
713     push @where, 'LOWER(cust_location.address2) LIKE LOWER('
714                  . dbh->quote($toggle ? $address2 . '%' : '%' . $address2)
715                  . ')';
716   }
717
718   push @cust_main, qsearch({
719     'debug'     => 1,
720     'table'     => 'cust_main',
721     'addl_from' => 'JOIN cust_location ON (cust_location.locationnum IN (cust_main.bill_locationnum, cust_main.ship_locationnum))',
722     'extra_sql' => 'WHERE ' . join(' OR ',@where),
723   });
724
725   \@cust_main;
726 }
727
728 sub phonesearch {
729   my @cust_main;
730
731   my $phone = $cgi->param('phone_text');
732
733   $phone =~ s/\D//g;
734   if ( $phone =~ /^(\d{3})(\d{3})(\d{4})(\d*)$/ ) {
735     $phone = "$1-$2-$3";
736     $phone .= " x$4" if $4;
737   } elsif ( $phone =~ /^(\d{3})(\d{4})$/ ) {
738     $phone = "$1-$2";
739   } elsif ( $phone =~ /^(\d{3,4})$/ ) {
740     $phone = $1;
741   } else {
742     errorpage(gettext('illegal_phone'). ": $phone");
743   }
744
745   my @fields = qw(daytime night fax);
746   push @fields, qw(ship_daytime ship_night ship_fax)
747     if defined dbdef->table('cust_main')->column('ship_last');
748
749   for my $field ( @fields ) {
750     push @cust_main, qsearch ( 'cust_main', 
751                                { $field => { 'op'    => 'LIKE',
752                                              'value' => "%$phone%" } } );
753   }
754
755   \@cust_main;
756 }
757 </%init>