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