status labels
[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 %      foreach my $part_svc ( $cust_pkg->part_svc ) {
123 %        my $svcpart = $part_svc->svcpart;
124 %        my $num_cust_svc = $cust_pkg->num_cust_svc($svcpart);
125 %        if ( $large_pkg_size > 0 and $num_cust_svc >= $large_pkg_size ) {
126 %          # don't retrieve the cust_svc records, just stash the 
127 %          # part_svc and num_cust_svc for later
128 %          $cust_svc_by_svcpart{$svcpart} = 
129 %            [ 'summarize', $part_svc, $num_cust_svc ];
130 %          $rows += 2;
131 %        }
132 %        elsif ( $num_cust_svc ) {
133 %          $cust_svc_by_svcpart{$svcpart} = [ $cust_pkg->cust_svc($svcpart) ];
134 %          $rows += $num_cust_svc;
135 %        } #if summarize
136 %      } #foreach $part_svc
137 %      $rows ||= 1; # in case the package has no services
138 %      push @all_cust_svc, \%cust_svc_by_svcpart;
139 %      push @pkg_rowspans, $rows;
140 %    } #foreach $cust_pkg
141 %    my $rowspan = List::Util::sum(@pkg_rowspans) || 1;
142 %
143 %    my $view;
144 %    if ( defined $cgi->param('quickpay') && $cgi->param('quickpay') eq 'yes' ) {
145 %      $view = $p. 'edit/cust_pay.cgi?quickpay=yes;custnum='. $custnum;
146 %    } else {
147 %      $view = $p. 'view/cust_main.cgi?'. $custnum;
148 %    }
149 %    my $pcompany = $company
150 %      ? qq!<A HREF="$view"><FONT SIZE=-1>!. encode_entities($company). '</FONT></A>'
151 %      : '<FONT SIZE=-1>&nbsp;</FONT>';
152 %    
153 %    my $status_label = $cust_main->status_label;
154 %    my $statuscolor = $cust_main->statuscolor;
155
156     <TR>
157       <TD CLASS="grid" ALIGN="right" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %>>
158         <A HREF="<% $view %>"><FONT SIZE=-1><% $cust_main->display_custnum %></FONT></A>
159       </TD>
160       <TD CLASS="grid" ALIGN="center" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %>>
161         <FONT SIZE="-1" COLOR="#<% $statuscolor %>"><B><% $status_label %></B></FONT>
162       </TD>
163       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %>>
164         <A HREF="<% $view %>"><FONT SIZE=-1><% "$last, $first" |h %></FONT></A>
165       </TD>
166       <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %>>
167         <% $pcompany %>
168       </TD>
169
170 %    foreach my $addl_col ( @addl_cols ) { 
171 % if ( $addl_col eq 'tickets' ) { 
172 % if ( @custom_priorities ) { 
173
174         <TD CLASS="inv" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %> ALIGN=right>
175             <FONT SIZE=-1>
176                <TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0>
177 % foreach my $priority ( @custom_priorities, '' ) { 
178 %                    my $num =
179 %                      FS::TicketSystem->num_customer_tickets($custnum,$priority);
180 %                    my $ahref = '';
181 %                    $ahref= '<A HREF="'.
182 %                            FS::TicketSystem->href_customer_tickets($custnum,$priority).
183 %                            '">'
184 %                      if $num;
185         
186                  <TR>
187                    <TD ALIGN=right>
188                      <FONT SIZE=-1><% $ahref.$num %></A></FONT>
189                    </TD>
190                    <TD ALIGN=left>
191                      <FONT SIZE=-1><% $ahref %><% $priority || '<i>('.emt('none').')</i>' %></A></FONT>
192                    </TD>
193                  </TR>
194 % } 
195
196              <TR>
197                <TH ALIGN=right STYLE="border-top: dashed 1px black">
198                <FONT SIZE=-1>
199 % } else { 
200           <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %> ALIGN=right>
201             <FONT SIZE=-1>
202 % } 
203 %           my $ahref = '';
204 %           $ahref = '<A HREF="'.
205 %                       FS::TicketSystem->href_customer_tickets($custnum).
206 %                       '">'
207 %             if $cust_main->get($addl_col);
208 %        
209
210         <% $ahref %><% $cust_main->get($addl_col) %></A>
211 % if ( @custom_priorities ) { 
212
213           </FONT></TH>
214             <TH ALIGN=left STYLE="border-top: dashed 1px black">
215               <FONT SIZE=-1><% ${ahref} %>Total</A><FONT>
216             </TH>
217           </TR>
218           </TABLE>
219 % } 
220
221         </FONT></TD>
222 % } else { 
223
224         <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ROWSPAN=<% $rowspan %> ALIGN=right><FONT SIZE=-1>
225           <% $cust_main->get($addl_col) %>
226         </FONT></TD>
227
228 %      }
229 %    }
230
231 %    my $n1 = '';
232 %    foreach ( @{$all_pkgs{$custnum}} ) {
233 %      my $pkgnum = $_->pkgnum;
234 %      my $part_pkg = $_->part_pkg;
235 %
236 %      my $pkg_comment = $part_pkg->pkg_comment( cust_pkg=>$_, nopkgpart=>1 );
237 %      my $show = $curuser->default_customer_view =~ /^(jumbo|packages)$/
238 %                   ? ''
239 %                   : ';show=packages';
240 %      my $frag = "cust_pkg$pkgnum"; #hack for IE ignoring real #fragment
241 %      my $pkgview = "${p}view/cust_main.cgi?custnum=$custnum$show;fragment=$frag#$frag";
242 %      # cust_svc stuff, built earlier
243 %      my %cust_svc_by_svcpart = %{ shift @all_cust_svc };
244 %      my $pkg_rowspan = shift @pkg_rowspans;
245
246         <% $n1 %><TD CLASS="grid" BGCOLOR="<% $bgcolor %>"  ROWSPAN="<% $pkg_rowspan%>">
247             <A HREF="<% $pkgview %>"><FONT SIZE=-1><% $pkg_comment |h %></FONT></A>
248         </TD>
249
250 %       my $n2 = '';
251 %       my $td = '<TD CLASS="grid" BGCOLOR="'.$bgcolor.'">';
252 %
253 %       foreach my $svcpart ( sort keys %cust_svc_by_svcpart ) { #sort order?
254 %         my $these = $cust_svc_by_svcpart{$svcpart};
255 %         if ( $these->[0] eq 'summarize' ) {
256 %           my $part_svc = $these->[1];
257 %           my $num_cust_svc = $these->[2];
258         <% $n2 %>
259 %           # summarize
260 %           # link opens a new search for this pkgnum/svcpart combo
261 %           my $href = $p.'search/cust_pkg_svc.html?svcpart='.$svcpart.
262 %                     ';pkgnum='.$pkgnum;
263           <% $td %>
264             <A HREF="<% $href %>"><% $part_svc->svc %></A>
265           </TD>
266           <% $td %>
267             <A HREF="<% $href %>"><B>(<% mt("view all [_1]", $num_cust_svc) |h %>)</B></A>
268           </TD>
269         </TR><TR>
270           <% $td %></TD>
271           <% $td %><& /elements/search-cust_svc.html, 
272                     'svcpart' => $svcpart,
273                     'pkgnum'  => $pkgnum,
274                     'svcdb'   => $part_svc->svcdb,
275                     &></TD>
276 %           $n2="</TR><TR>";
277 %         }
278 %         elsif ( scalar @$these ) { # do not summarize
279 %           foreach my $cust_svc ( @$these ) {
280           <% $n2 %>
281             <% $td %>
282                 <% FS::UI::Web::svc_link($m, $cust_svc->part_svc, $cust_svc) %>
283             </TD> 
284             <% $td %>
285                 <% FS::UI::Web::svc_label_link($m, $cust_svc->part_svc, $cust_svc) %>
286             </TD>
287 %             $n2="</TR><TR>";
288 %           } #foreach $cust_svc
289 %         }
290 %       } # foreach $svcpart
291 %
292 %      unless ( %cust_svc_by_svcpart ) {
293             <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" COLSPAN=2>&nbsp;</TD>
294 %      }
295 %
296 %      $n1="</TR><TR>";
297 %    }
298 %
299 %    unless ( @{$all_pkgs{$custnum}} ) {
300         <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" COLSPAN=3>&nbsp;</TD>
301 %    }
302 %    
303     </TR>
304 %  }
305  
306   </TABLE><% $pager %>
307
308   <& /elements/footer.html &>
309 <%init>
310 my $curuser = $FS::CurrentUser::CurrentUser;
311
312 die "access denied"
313   unless $curuser->access_right('List all customers');
314
315 my $conf = new FS::Conf;
316 my $maxrecords = $conf->config('maxsearchrecordsperpage');
317 # summarize more than this many services of the same svcpart
318 my $large_pkg_size = $conf->config('cust_pkg-large_pkg_size') || 0;
319
320 my $limit = '';
321 $limit .= "LIMIT $maxrecords" if $maxrecords;
322
323 my $offset = $cgi->param('offset') || 0;
324 $limit .= " OFFSET $offset" if $offset;
325
326 my $total = 0;
327
328 my(@cust_main, $sortby, $orderby);
329 my @select = ();
330 my @addl_headers = ();
331 my @addl_cols = ();
332 if ( $cgi->param('browse')
333      || $cgi->param('otaker_on')
334      || $cgi->param('agentnum_on')
335 ) {
336
337   my %search = ();
338
339   if ( $cgi->param('browse') ) {
340     my $query = $cgi->param('browse');
341     if ( $query eq 'custnum' ) {
342       if ( $conf->exists('cust_main-default_agent_custid') ) {
343         $sortby=\*display_custnum_sort;
344         $orderby = "ORDER BY CASE WHEN agent_custid IS NOT NULL AND agent_custid != '' THEN CAST(agent_custid AS BIGINT) ELSE custnum END";
345       } else {
346         $sortby=\*custnum_sort;
347         $orderby = "ORDER BY custnum";
348       }
349     } elsif ( $query eq 'last' ) {
350       $sortby=\*last_sort;
351       $orderby = "ORDER BY LOWER(last || ' ' || first)";
352     } elsif ( $query eq 'company' ) {
353       $sortby=\*company_sort;
354       $orderby = "ORDER BY LOWER(company || ' ' || last || ' ' || first )";
355     } elsif ( $query eq 'tickets' ) {
356       $sortby = \*tickets_sort;
357       $orderby = "ORDER BY tickets DESC";
358       push @select, FS::TicketSystem->sql_num_customer_tickets. " as tickets";
359       push @addl_headers, 'Tickets';
360       push @addl_cols, 'tickets';
361     } elsif ( $query eq 'uspsunvalid' ) {
362        $search{'country'} = 'US';
363        $sortby=\*custnum_sort;
364        $orderby = "ORDER BY custnum";
365     } else {
366       die "unknown browse field $query";
367     }
368   } else {
369     $sortby = \*last_sort; #??
370     $orderby = "ORDER BY LOWER(last || ' ' || first)"; #??
371   }
372
373   if ( $cgi->param('otaker_on') ) {
374     die "access denied"
375       unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
376     $cgi->param('otaker') =~ /^(\w{1,32})$/ or errorpage("Illegal otaker");
377     $search{otaker} = $1;
378   } elsif ( $cgi->param('agentnum_on') ) {
379     $cgi->param('agentnum') =~ /^(\d+)$/ or errorpage("Illegal agentnum");
380     $search{agentnum} = $1;
381   }
382
383   my @qual = ();
384
385   my $ncancelled = '';
386
387   if (  $cgi->param('showcancelledcustomers') eq '0' #see if it was set by me
388        || ( $conf->exists('hidecancelledcustomers')
389              && ! $cgi->param('showcancelledcustomers') )
390      ) {
391     push @qual, FS::cust_main->uncancel_sql;
392    }
393
394   push @qual, FS::cust_main->cancel_sql   if $cgi->param('cancelled');
395   push @qual, FS::cust_main->prospect_sql if $cgi->param('prospect');
396   push @qual, FS::cust_main->ordered_sql  if $cgi->param('ordered');
397   push @qual, FS::cust_main->active_sql   if $cgi->param('active');
398   push @qual, FS::cust_main->inactive_sql if $cgi->param('inactive');
399   push @qual, FS::cust_main->susp_sql     if $cgi->param('suspended');
400
401   #EWWWWWW
402   my $qual = join(' AND ',
403             map { "$_ = ". dbh->quote($search{$_}) } keys %search );
404
405   my $addl_qual = join(' AND ', @qual);
406
407   #here is the agent virtualization
408   $addl_qual .= ( $addl_qual ? ' AND ' : '' ).
409                 $FS::CurrentUser::CurrentUser->agentnums_sql;
410
411   if ( $cgi->param('browse') && $cgi->param('browse') eq 'uspsunvalid' ) {
412        $addl_qual .= ' AND ( length(zip) < 9 OR upper(address1) != address1 OR upper(city) != city ) ';
413   }
414
415   if ( $addl_qual ) {
416     $qual .= ' AND ' if $qual;
417     $qual .= $addl_qual;
418   }
419     
420   $qual = " WHERE $qual" if $qual;
421   my $statement = "SELECT COUNT(*) FROM cust_main $qual";
422   my $sth = dbh->prepare($statement) or die dbh->errstr." preparing $statement";
423   $sth->execute or die "Error executing \"$statement\": ". $sth->errstr;
424
425   $total = $sth->fetchrow_arrayref->[0];
426
427   if ( $addl_qual ) {
428     if ( %search ) {
429       $addl_qual = " AND $addl_qual";
430     } else {
431       $addl_qual = " WHERE $addl_qual";
432     }
433   }
434
435   my $select;
436   if ( @select ) {
437     $select = 'cust_main.*, '. join (', ', @select);
438   } else {
439     $select = '*';
440   }
441
442   @cust_main = qsearch('cust_main', \%search, $select,   
443                          "$addl_qual $orderby $limit" );
444
445 } else {
446   @cust_main=();
447   $sortby = \*last_sort;
448
449   push @cust_main, @{&custnumsearch}
450     if $cgi->param('custnum_on') && $cgi->param('custnum_text');
451   push @cust_main, @{&cardsearch}
452     if $cgi->param('card_on') && $cgi->param('card');
453   push @cust_main, @{&lastsearch}
454     if $cgi->param('last_on') && $cgi->param('last_text');
455   push @cust_main, @{&companysearch}
456     if $cgi->param('company_on') && $cgi->param('company_text');
457   push @cust_main, @{&address2search}
458     if $cgi->param('address2_on') && $cgi->param('address2_text');
459   push @cust_main, @{&phonesearch}
460     if $cgi->param('phone_on') && $cgi->param('phone_text');
461   push @cust_main, @{&referralsearch}
462     if $cgi->param('referral_custnum');
463
464   if ( $cgi->param('company_on') && $cgi->param('company_text') ) {
465     $sortby = \*company_sort;
466     push @cust_main, @{&companysearch};
467   }
468
469   if ( $cgi->param('search_cust') ) {
470     $sortby = \*company_sort;
471     $orderby = "ORDER BY LOWER(company || ' ' || last || ' ' || first )";
472     push @cust_main, smart_search(
473       'search'            => scalar($cgi->param('search_cust')),
474       'no_fuzzy_on_exact' => ! ( $curuser->option('enable_fuzzy_on_exact')
475                                  || $conf->exists('enable_fuzzy_on_exact')
476                                ),
477     );
478   }
479
480   @cust_main = grep { $_->ncancelled_pkgs || ! $_->all_pkgs } @cust_main
481     if ! $cgi->param('cancelled')
482        && (
483          $cgi->param('showcancelledcustomers') eq '0' #see if it was set by me
484          || ( $conf->exists('hidecancelledcustomers')
485                && ! $cgi->param('showcancelledcustomers') )
486        );
487
488   my %saw = ();
489   @cust_main = grep { !$saw{$_->custnum}++ } @cust_main;
490 }
491
492 my %all_pkgs;
493 if ( $conf->exists('hidecancelledpackages' ) ) {
494   %all_pkgs = map { $_->custnum => [ $_->ncancelled_pkgs ] } @cust_main;
495 } else {
496   %all_pkgs = map { $_->custnum => [ $_->all_pkgs ] } @cust_main;
497 }
498
499 sub last_sort {
500   lc($a->getfield('last')) cmp lc($b->getfield('last'))
501   || lc($a->first) cmp lc($b->first);
502 }
503
504 sub company_sort {
505   return -1 if $a->company && ! $b->company;
506   return 1 if ! $a->company && $b->company;
507   lc($a->company) cmp lc($b->company)
508   || lc($a->getfield('last')) cmp lc($b->getfield('last'))
509   || lc($a->first) cmp lc($b->first);;
510 }
511
512 sub display_custnum_sort {
513   $a->display_custnum <=> $b->display_custnum;
514 }
515
516 sub custnum_sort {
517   $a->getfield('custnum') <=> $b->getfield('custnum');
518 }
519
520 sub tickets_sort {
521   $b->getfield('tickets') <=> $a->getfield('tickets');
522 }
523
524 sub custnumsearch {
525
526   my $custnum = $cgi->param('custnum_text');
527   $custnum =~ s/\D//g;
528   $custnum =~ /^(\d{1,23})$/ or errorpage(emt("Illegal customer number"));
529   $custnum = $1;
530   
531   [ qsearchs('cust_main', { 'custnum' => $custnum } ) ];
532 }
533
534 sub cardsearch {
535
536   my($card)=$cgi->param('card');
537   $card =~ s/\D//g;
538   $card =~ /^(\d{13,16}|\d{8,9})$/ or errorpage(emt("Illegal card number"));
539   my($payinfo)=$1;
540
541   [ qsearch('cust_main',{'payinfo'=>$payinfo, 'payby'=>'CARD'}),
542     qsearch('cust_main',{'payinfo'=>$payinfo, 'payby'=>'DCRD'})
543   ];
544 }
545
546 sub referralsearch {
547   $cgi->param('referral_custnum') =~ /^(\d+)$/
548     or errorpage("Illegal referral_custnum");
549   my $cust_main = qsearchs('cust_main', { 'custnum' => $1 } )
550     or errorpage(emt("Customer [_1] not found",$1));
551   my $depth;
552   if ( $cgi->param('referral_depth') ) {
553     $cgi->param('referral_depth') =~ /^(\d+)$/
554       or errorpage(emt("Illegal referral_depth"));
555     $depth = $1;
556   } else {
557     $depth = 1;
558   }
559   [ $cust_main->referral_cust_main($depth) ];
560 }
561
562 sub lastsearch {
563   my(%last_type);
564   my @cust_main;
565   foreach ( $cgi->param('last_type') ) {
566     $last_type{$_}++;
567   }
568
569   $cgi->param('last_text') =~ /^([\w \,\.\-\']*)$/
570     or errorpage(emt("Illegal last name"));
571   my($last)=$1;
572
573   if ( $last_type{'Exact'} || $last_type{'Fuzzy'} ) {
574     push @cust_main, qsearch( 'cust_main',
575                               { 'last' => { 'op'    => 'ILIKE',
576                                             'value' => $last    } } );
577
578     push @cust_main, qsearch( 'cust_main',
579                               { 'ship_last' => { 'op'    => 'ILIKE',
580                                                  'value' => $last    } } )
581       if defined dbdef->table('cust_main')->column('ship_last');
582   }
583
584   if ( $last_type{'Substring'} || $last_type{'All'} ) {
585
586     push @cust_main, qsearch( 'cust_main',
587                               { 'last' => { 'op'    => 'ILIKE',
588                                             'value' => "%$last%" } } );
589
590     push @cust_main, qsearch( 'cust_main',
591                               { 'ship_last' => { 'op'    => 'ILIKE',
592                                                  'value' => "%$last%" } } )
593       if defined dbdef->table('cust_main')->column('ship_last');
594
595   }
596
597   if ( $last_type{'Fuzzy'} || $last_type{'All'} ) {
598     push @cust_main, FS::cust_main::Search->fuzzy_search( { 'last' => $last } );
599   }
600
601   \@cust_main;
602 }
603
604 sub companysearch {
605
606   my(%company_type);
607   my @cust_main;
608   foreach ( $cgi->param('company_type') ) {
609     $company_type{$_}++ 
610   };
611
612   $cgi->param('company_text') =~
613     /^([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=]*)$/
614       or errorpage(emt("Illegal company"));
615   my $company = $1;
616
617   if ( $company_type{'Exact'} || $company_type{'Fuzzy'} ) {
618     push @cust_main, qsearch( 'cust_main',
619                               { 'company' => { 'op'    => 'ILIKE',
620                                                'value' => $company } } );
621
622     push @cust_main, qsearch( 'cust_main',
623                               { 'ship_company' => { 'op'    => 'ILIKE',
624                                                     'value' => $company } } )
625       if defined dbdef->table('cust_main')->column('ship_last');
626   }
627
628   if ( $company_type{'Substring'} || $company_type{'All'} ) {
629
630     push @cust_main, qsearch( 'cust_main',
631                               { 'company' => { 'op'    => 'ILIKE',
632                                                'value' => "%$company%" } } );
633
634     push @cust_main, qsearch( 'cust_main',
635                               { 'ship_company' => { 'op'    => 'ILIKE',
636                                                     'value' => "%$company%" } })
637       if defined dbdef->table('cust_main')->column('ship_last');
638
639   }
640
641   if ( $company_type{'Fuzzy'} || $company_type{'All'} ) {
642     push @cust_main, FS::cust_main::Search->fuzzy_search( { 'company' => $company } );
643   }
644
645   if ($company_type{'Sound-alike'}) {
646   }
647
648   \@cust_main;
649 }
650
651 sub address2search {
652   my @cust_main;
653
654   $cgi->param('address2_text') =~
655     /^([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=]*)$/
656       or errorpage(emt("Illegal address2"));
657   my $address2 = $1;
658
659   push @cust_main, qsearch( 'cust_main',
660                             { 'address2' => { 'op'    => 'ILIKE',
661                                               'value' => $address2 } } );
662   push @cust_main, qsearch( 'cust_main',
663                             { 'ship_address2' => { 'op'    => 'ILIKE',
664                                                    'value' => $address2 } } );
665
666   \@cust_main;
667 }
668
669 sub phonesearch {
670   my @cust_main;
671
672   my $phone = $cgi->param('phone_text');
673
674   $phone =~ s/\D//g;
675   if ( $phone =~ /^(\d{3})(\d{3})(\d{4})(\d*)$/ ) {
676     $phone = "$1-$2-$3";
677     $phone .= " x$4" if $4;
678   } elsif ( $phone =~ /^(\d{3})(\d{4})$/ ) {
679     $phone = "$1-$2";
680   } elsif ( $phone =~ /^(\d{3,4})$/ ) {
681     $phone = $1;
682   } else {
683     errorpage(gettext('illegal_phone'). ": $phone");
684   }
685
686   my @fields = qw(daytime night fax);
687   push @fields, qw(ship_daytime ship_night ship_fax)
688     if defined dbdef->table('cust_main')->column('ship_last');
689
690   for my $field ( @fields ) {
691     push @cust_main, qsearch ( 'cust_main', 
692                                { $field => { 'op'    => 'LIKE',
693                                              'value' => "%$phone%" } } );
694   }
695
696   \@cust_main;
697 }
698 </%init>