phone number search (Bug#422)
[freeside.git] / httemplate / search / cust_main.cgi
1 <%
2
3 my $conf = new FS::Conf;
4 my $maxrecords = $conf->config('maxsearchrecordsperpage');
5
6 #my $cache;
7
8 #my $monsterjoin = <<END;
9 #cust_main left outer join (
10 #  ( cust_pkg left outer join part_pkg using(pkgpart)
11 #  ) left outer join (
12 #    (
13 #      (
14 #        ( cust_svc left outer join part_svc using (svcpart)
15 #        ) left outer join svc_acct using (svcnum)
16 #      ) left outer join svc_domain using(svcnum)
17 #    ) left outer join svc_forward using(svcnum)
18 #  ) using (pkgnum)
19 #) using (custnum)
20 #END
21
22 #my $monsterjoin = <<END;
23 #cust_main left outer join (
24 #  ( cust_pkg left outer join part_pkg using(pkgpart)
25 #  ) left outer join (
26 #    (
27 #      (
28 #        ( cust_svc left outer join part_svc using (svcpart)
29 #        ) left outer join (
30 #          svc_acct left outer join (
31 #            select svcnum, domain, catchall from svc_domain
32 #            ) as svc_acct_domsvc (
33 #              svc_acct_svcnum, svc_acct_domain, svc_acct_catchall
34 #          ) on svc_acct.domsvc = svc_acct_domsvc.svc_acct_svcnum
35 #        ) using (svcnum)
36 #      ) left outer join svc_domain using(svcnum)
37 #    ) left outer join svc_forward using(svcnum)
38 #  ) using (pkgnum)
39 #) using (custnum)
40 #END
41
42 my $limit = '';
43 $limit .= "LIMIT $maxrecords" if $maxrecords;
44
45 my $offset = $cgi->param('offset') || 0;
46 $limit .= " OFFSET $offset" if $offset;
47
48 my $total = 0;
49
50 my(@cust_main, $sortby, $orderby);
51 if ( $cgi->param('browse')
52      || $cgi->param('otaker_on')
53 ) {
54
55   my %search = ();
56   if ( $cgi->param('browse') ) {
57     my $query = $cgi->param('browse');
58     if ( $query eq 'custnum' ) {
59       $sortby=\*custnum_sort;
60       $orderby = "ORDER BY custnum";
61     } elsif ( $query eq 'last' ) {
62       $sortby=\*last_sort;
63       $orderby = "ORDER BY LOWER(last || ' ' || first)";
64     } elsif ( $query eq 'company' ) {
65       $sortby=\*company_sort;
66       $orderby = "ORDER BY LOWER(company || ' ' || last || ' ' || first )";
67     } else {
68       die "unknown browse field $query";
69     }
70   } else {
71     $sortby = \*last_sort; #??
72     $orderby = "ORDER BY LOWER(last || ' ' || first)"; #??
73     if ( $cgi->param('otaker_on') ) {
74       $cgi->param('otaker') =~ /^(\w{1,32})$/ or eidiot "Illegal otaker\n";
75       $search{otaker} = $1;
76     } else {
77       die "unknown query...";
78     }
79   }
80
81   my $ncancelled = '';
82
83   if ( driver_name eq 'mysql' ) {
84
85        my $query = "CREATE TEMPORARY TABLE temp1_$$ TYPE=MYISAM
86                       SELECT cust_pkg.custnum,COUNT(*) as count
87                         FROM cust_pkg,cust_main
88                           WHERE cust_pkg.custnum = cust_main.custnum
89                                 AND ( cust_pkg.cancel IS NULL
90                                       OR cust_pkg.cancel = 0 )
91                           GROUP BY cust_pkg.custnum";
92        my $sth = dbh->prepare($query) or die dbh->errstr. " preparing $query";
93        $sth->execute or die "Error executing \"$query\": ". $sth->errstr;
94        $query = "CREATE TEMPORARY TABLE temp2_$$ TYPE=MYISAM
95                    SELECT cust_pkg.custnum,COUNT(*) as count
96                      FROM cust_pkg,cust_main
97                        WHERE cust_pkg.custnum = cust_main.custnum
98                        GROUP BY cust_pkg.custnum";
99        my $sth = dbh->prepare($query) or die dbh->errstr. " preparing $query";
100        $sth->execute or die "Error executing \"$query\": ". $sth->errstr;
101   }
102
103   if (  $cgi->param('showcancelledcustomers') eq '0' #see if it was set by me
104        || ( $conf->exists('hidecancelledcustomers')
105              && ! $cgi->param('showcancelledcustomers') )
106      ) {
107     #grep { $_->ncancelled_pkgs || ! $_->all_pkgs }
108     if ( driver_name eq 'mysql' ) {
109        $ncancelled = "
110           temp1_$$.custnum = cust_main.custnum
111                AND temp2_$$.custnum = cust_main.custnum
112                AND (temp1_$$.count > 0
113                        OR temp2_$$.count = 0 )
114        ";
115     } else {
116        $ncancelled = "
117           0 < ( SELECT COUNT(*) FROM cust_pkg
118                        WHERE cust_pkg.custnum = cust_main.custnum
119                          AND ( cust_pkg.cancel IS NULL
120                                OR cust_pkg.cancel = 0
121                              )
122                    )
123             OR 0 = ( SELECT COUNT(*) FROM cust_pkg
124                        WHERE cust_pkg.custnum = cust_main.custnum
125                    )
126        ";
127     }
128
129   }
130
131   #EWWWWWW
132   my $qual = join(' AND ',
133             map { "$_ = ". dbh->quote($search{$_}) } keys %search );
134
135   if ( $ncancelled ) {
136     $qual .= ' AND ' if $qual;
137     $qual .= $ncancelled;
138   }
139     
140   $qual = " WHERE $qual" if $qual;
141   my $statement;
142   if ( driver_name eq 'mysql' ) {
143     $statement = "SELECT COUNT(*) FROM cust_main";
144     $statement .= ", temp1_$$, temp2_$$ $qual" if $qual;
145   } else {
146     $statement = "SELECT COUNT(*) FROM cust_main $qual";
147   }
148   my $sth = dbh->prepare($statement) or die dbh->errstr." preparing $statement";
149   $sth->execute or die "Error executing \"$statement\": ". $sth->errstr;
150
151   $total = $sth->fetchrow_arrayref->[0];
152
153   if ( $ncancelled ) {
154     if ( %search ) {
155       $ncancelled = " AND $ncancelled";
156     } else {
157       $ncancelled = " WHERE $ncancelled";
158     }
159   }
160
161   my @just_cust_main;
162   if ( driver_name eq 'mysql' ) {
163     @just_cust_main = qsearch('cust_main', \%search, 'cust_main.*',
164                               ",temp1_$$,temp2_$$ $ncancelled $orderby $limit");
165   } else {
166     @just_cust_main = qsearch('cust_main', \%search, '',   
167                               "$ncancelled $orderby $limit" );
168   }
169   if ( driver_name eq 'mysql' ) {
170     $query = "DROP TABLE temp1_$$,temp2_$$;";
171     my $sth = dbh->prepare($query) or die dbh->errstr. " preparing $query";
172     $sth->execute or die "Error executing \"$query\": ". $sth->errstr;
173   }
174   @cust_main = @just_cust_main;
175
176 #  foreach my $cust_main ( @just_cust_main ) {
177 #
178 #    my @one_cust_main;
179 #    $FS::Record::DEBUG=1;
180 #    ( $cache, @one_cust_main ) = jsearch(
181 #      "$monsterjoin",
182 #      { 'custnum' => $cust_main->custnum },
183 #      '',
184 #      '',
185 #      'cust_main',
186 #      'custnum',
187 #    );
188 #    push @cust_main, @one_cust_main;
189 #  }
190
191 } else {
192   @cust_main=();
193   $sortby = \*last_sort;
194
195   push @cust_main, @{&custnumsearch}
196     if $cgi->param('custnum_on') && $cgi->param('custnum_text');
197   push @cust_main, @{&cardsearch}
198     if $cgi->param('card_on') && $cgi->param('card');
199   push @cust_main, @{&lastsearch}
200     if $cgi->param('last_on') && $cgi->param('last_text');
201   push @cust_main, @{&companysearch}
202     if $cgi->param('company_on') && $cgi->param('company_text');
203   push @cust_main, @{&phonesearch}
204     if $cgi->param('phone_on') && $cgi->param('phone_text');
205   push @cust_main, @{&referralsearch}
206     if $cgi->param('referral_custnum');
207
208   if ( $cgi->param('company_on') && $cgi->param('company_text') ) {
209     $sortby = \*company_sort;
210     push @cust_main, @{&companysearch};
211   }
212
213   @cust_main = grep { $_->ncancelled_pkgs || ! $_->all_pkgs } @cust_main
214     if $cgi->param('showcancelledcustomers') eq '0' #see if it was set by me
215        || ( $conf->exists('hidecancelledcustomers')
216              && ! $cgi->param('showcancelledcustomers') );
217
218   my %saw = ();
219   @cust_main = grep { !$saw{$_->custnum}++ } @cust_main;
220 }
221
222 my %all_pkgs;
223 if ( $conf->exists('hidecancelledpackages' ) ) {
224   %all_pkgs = map { $_->custnum => [ $_->ncancelled_pkgs ] } @cust_main;
225 } else {
226   %all_pkgs = map { $_->custnum => [ $_->all_pkgs ] } @cust_main;
227 }
228 #%all_pkgs = ();
229
230 if ( scalar(@cust_main) == 1 && ! $cgi->param('referral_custnum') ) {
231   if ( $cgi->param('quickpay') eq 'yes' ) {
232     print $cgi->redirect(popurl(2). "edit/cust_pay.cgi?quickpay=yes;custnum=". $cust_main[0]->custnum);
233   } else {
234     print $cgi->redirect(popurl(2). "view/cust_main.cgi?". $cust_main[0]->custnum);
235   }
236   #exit;
237 } elsif ( scalar(@cust_main) == 0 ) {
238 %>
239 <!-- mason kludge -->
240 <%
241   eidiot "No matching customers found!\n";
242 } else { 
243 %>
244 <!-- mason kludge -->
245 <%
246
247   $total ||= scalar(@cust_main);
248   print header("Customer Search Results",menubar(
249     'Main Menu', popurl(2)
250   )), "$total matching customers found ";
251
252   #begin pager
253   my $pager = '';
254   if ( $total != scalar(@cust_main) && $maxrecords ) {
255     unless ( $offset == 0 ) {
256       $cgi->param('offset', $offset - $maxrecords);
257       $pager .= '<A HREF="'. $cgi->self_url.
258                 '"><B><FONT SIZE="+1">Previous</FONT></B></A> ';
259     }
260     my $poff;
261     my $page;
262     for ( $poff = 0; $poff < $total; $poff += $maxrecords ) {
263       $page++;
264       if ( $offset == $poff ) {
265         $pager .= qq!<FONT SIZE="+2">$page</FONT> !;
266       } else {
267         $cgi->param('offset', $poff);
268         $pager .= qq!<A HREF="!. $cgi->self_url. qq!">$page</A> !;
269       }
270     }
271     unless ( $offset + $maxrecords > $total ) {
272       $cgi->param('offset', $offset + $maxrecords);
273       $pager .= '<A HREF="'. $cgi->self_url.
274                 '"><B><FONT SIZE="+1">Next</FONT></B></A> ';
275     }
276   }
277   #end pager
278   
279   if ( $cgi->param('showcancelledcustomers') eq '0' #see if it was set by me
280        || ( $conf->exists('hidecancelledcustomers')
281             && ! $cgi->param('showcancelledcustomers')
282           )
283      ) {
284     $cgi->param('showcancelledcustomers', 1);
285     $cgi->param('offset', 0);
286     print qq!( <a href="!. $cgi->self_url. qq!">show cancelled customers</a> )!;
287   } else {
288     $cgi->param('showcancelledcustomers', 0);
289     $cgi->param('offset', 0);
290     print qq!( <a href="!. $cgi->self_url. qq!">hide cancelled customers</a> )!;
291   }
292   if ( $cgi->param('referral_custnum') ) {
293     $cgi->param('referral_custnum') =~ /^(\d+)$/
294       or eidiot "Illegal referral_custnum\n";
295     my $referral_custnum = $1;
296     my $cust_main = qsearchs('cust_main', { custnum => $referral_custnum } );
297     print '<FORM METHOD=POST>'.
298           qq!<INPUT TYPE="hidden" NAME="referral_custnum" VALUE="$referral_custnum">!.
299           'referrals of <A HREF="'. popurl(2).
300           "view/cust_main.cgi?$referral_custnum\">$referral_custnum: ".
301           ( $cust_main->company
302             || $cust_main->last. ', '. $cust_main->first ).
303           '</A>';
304     print "\n",<<END;
305       <SCRIPT>
306       function changed(what) {
307         what.form.submit();
308       }
309       </SCRIPT>
310 END
311     print ' <SELECT NAME="referral_depth" SIZE="1" onChange="changed(this)">';
312     my $max = 8; #config file
313     $cgi->param('referral_depth') =~ /^(\d*)$/ 
314       or eidiot "Illegal referral_depth";
315     my $referral_depth = $1;
316
317     foreach my $depth ( 1 .. $max ) {
318       print '<OPTION',
319             ' SELECTED'x($depth == $referral_depth),
320             ">$depth";
321     }
322     print "</SELECT> levels deep".
323           '<NOSCRIPT> <INPUT TYPE="submit" VALUE="change"></NOSCRIPT>'.
324           '</FORM>';
325   }
326
327   print "<BR><BR>". $pager. &table(). <<END;
328       <TR>
329         <TH></TH>
330         <TH>(bill) name</TH>
331         <TH>company</TH>
332 END
333
334 if ( defined dbdef->table('cust_main')->column('ship_last') ) {
335   print <<END;
336       <TH>(service) name</TH>
337       <TH>company</TH>
338 END
339 }
340
341 print <<END;
342         <TH>Packages</TH>
343         <TH COLSPAN=2>Services</TH>
344       </TR>
345 END
346
347   my(%saw,$cust_main);
348   my $p = popurl(2);
349   foreach $cust_main (
350     sort $sortby grep(!$saw{$_->custnum}++, @cust_main)
351   ) {
352     my($custnum,$last,$first,$company)=(
353       $cust_main->custnum,
354       $cust_main->getfield('last'),
355       $cust_main->getfield('first'),
356       $cust_main->company,
357     );
358
359     my(@lol_cust_svc);
360     my($rowspan)=0;#scalar( @{$all_pkgs{$custnum}} );
361     foreach ( @{$all_pkgs{$custnum}} ) {
362       #my(@cust_svc) = qsearch( 'cust_svc', { 'pkgnum' => $_->pkgnum } );
363       my @cust_svc = $_->cust_svc;
364       push @lol_cust_svc, \@cust_svc;
365       $rowspan += scalar(@cust_svc) || 1;
366     }
367
368     #my($rowspan) = scalar(@{$all_pkgs{$custnum}});
369     my $view;
370     if ( defined $cgi->param('quickpay') && $cgi->param('quickpay') eq 'yes' ) {
371       $view = $p. 'edit/cust_pay.cgi?quickpay=yes;custnum='. $custnum;
372     } else {
373       $view = $p. 'view/cust_main.cgi?'. $custnum;
374     }
375     my $pcompany = $company
376       ? qq!<A HREF="$view"><FONT SIZE=-1>$company</FONT></A>!
377       : '<FONT SIZE=-1>&nbsp;</FONT>';
378     print <<END;
379     <TR>
380       <TD ROWSPAN=$rowspan><A HREF="$view"><FONT SIZE=-1>$custnum</FONT></A></TD>
381       <TD ROWSPAN=$rowspan><A HREF="$view"><FONT SIZE=-1>$last, $first</FONT></A></TD>
382       <TD ROWSPAN=$rowspan>$pcompany</TD>
383 END
384     if ( defined dbdef->table('cust_main')->column('ship_last') ) {
385       my($ship_last,$ship_first,$ship_company)=(
386         $cust_main->ship_last || $cust_main->getfield('last'),
387         $cust_main->ship_last ? $cust_main->ship_first : $cust_main->first,
388         $cust_main->ship_last ? $cust_main->ship_company : $cust_main->company,
389       );
390       my $pship_company = $ship_company
391         ? qq!<A HREF="$view"><FONT SIZE=-1>$ship_company</FONT></A>!
392         : '<FONT SIZE=-1>&nbsp;</FONT>';
393       print <<END;
394       <TD ROWSPAN=$rowspan><A HREF="$view"><FONT SIZE=-1>$ship_last, $ship_first</FONT></A></TD>
395       <TD ROWSPAN=$rowspan>$pship_company</A></TD>
396 END
397     }
398
399     my($n1)='';
400     foreach ( @{$all_pkgs{$custnum}} ) {
401       my $pkgnum = $_->pkgnum;
402 #      my $part_pkg = qsearchs( 'part_pkg', { pkgpart => $_->pkgpart } );
403       my $part_pkg = $_->part_pkg;
404
405       my $pkg = $part_pkg->pkg;
406       my $comment = $part_pkg->comment;
407       my $pkgview = $p. 'view/cust_pkg.cgi?'. $pkgnum;
408       my @cust_svc = @{shift @lol_cust_svc};
409       #my(@cust_svc) = qsearch( 'cust_svc', { 'pkgnum' => $_->pkgnum } );
410       my $rowspan = scalar(@cust_svc) || 1;
411
412       print $n1, qq!<TD ROWSPAN=$rowspan><A HREF="$pkgview"><FONT SIZE=-1>$pkg - $comment</FONT></A></TD>!;
413       my($n2)='';
414       foreach my $cust_svc ( @cust_svc ) {
415          my($label, $value, $svcdb) = $cust_svc->label;
416          my($svcnum) = $cust_svc->svcnum;
417          my($sview) = $p.'view';
418          print $n2,qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$label</FONT></A></TD>!,
419                qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$value</FONT></A></TD>!;
420          $n2="</TR><TR>";
421       }
422       #print qq!</TR><TR>\n!;
423       $n1="</TR><TR>";
424     }
425     print "</TR>";
426   }
427  
428   print "</TABLE>$pager</BODY></HTML>";
429
430 }
431
432 #undef $cache; #does this help?
433
434 #
435
436 sub last_sort {
437   lc($a->getfield('last')) cmp lc($b->getfield('last'))
438   || lc($a->first) cmp lc($b->first);
439 }
440
441 sub company_sort {
442   return -1 if $a->company && ! $b->company;
443   return 1 if ! $a->company && $b->company;
444   lc($a->company) cmp lc($b->company)
445   || lc($a->getfield('last')) cmp lc($b->getfield('last'))
446   || lc($a->first) cmp lc($b->first);;
447 }
448
449 sub custnum_sort {
450   $a->getfield('custnum') <=> $b->getfield('custnum');
451 }
452
453 sub custnumsearch {
454
455   my $custnum = $cgi->param('custnum_text');
456   $custnum =~ s/\D//g;
457   $custnum =~ /^(\d{1,23})$/ or eidiot "Illegal customer number\n";
458   my $custnum = $1;
459   
460   [ qsearchs('cust_main', { 'custnum' => $custnum } ) ];
461 }
462
463 sub cardsearch {
464
465   my($card)=$cgi->param('card');
466   $card =~ s/\D//g;
467   $card =~ /^(\d{13,16})$/ or eidiot "Illegal card number\n";
468   my($payinfo)=$1;
469
470   [ qsearch('cust_main',{'payinfo'=>$payinfo, 'payby'=>'CARD'}) ];
471 }
472
473 sub referralsearch {
474   $cgi->param('referral_custnum') =~ /^(\d+)$/
475     or eidiot "Illegal referral_custnum";
476   my $cust_main = qsearchs('cust_main', { 'custnum' => $1 } )
477     or eidiot "Customer $1 not found";
478   my $depth;
479   if ( $cgi->param('referral_depth') ) {
480     $cgi->param('referral_depth') =~ /^(\d+)$/
481       or eidiot "Illegal referral_depth";
482     $depth = $1;
483   } else {
484     $depth = 1;
485   }
486   [ $cust_main->referral_cust_main($depth) ];
487 }
488
489 sub lastsearch {
490   my(%last_type);
491   my @cust_main;
492   foreach ( $cgi->param('last_type') ) {
493     $last_type{$_}++;
494   }
495
496   $cgi->param('last_text') =~ /^([\w \,\.\-\']*)$/
497     or eidiot "Illegal last name";
498   my($last)=$1;
499
500   if ( $last_type{'Exact'} || $last_type{'Fuzzy'} ) {
501     push @cust_main, qsearch( 'cust_main',
502                               { 'last' => { 'op'    => 'ILIKE',
503                                             'value' => $last    } } );
504
505     push @cust_main, qsearch( 'cust_main',
506                               { 'ship_last' => { 'op'    => 'ILIKE',
507                                                  'value' => $last    } } )
508       if defined dbdef->table('cust_main')->column('ship_last');
509   }
510
511   if ( $last_type{'Substring'} || $last_type{'All'} ) {
512
513     push @cust_main, qsearch( 'cust_main',
514                               { 'last' => { 'op'    => 'ILIKE',
515                                             'value' => "%$last%" } } );
516
517     push @cust_main, qsearch( 'cust_main',
518                               { 'ship_last' => { 'op'    => 'ILIKE',
519                                                  'value' => "%$last%" } } )
520       if defined dbdef->table('cust_main')->column('ship_last');
521
522   }
523
524   if ( $last_type{'Fuzzy'} || $last_type{'All'} ) {
525
526     &FS::cust_main::check_and_rebuild_fuzzyfiles;
527     my $all_last = &FS::cust_main::all_last;
528
529     my %last;
530     if ( $last_type{'Fuzzy'} || $last_type{'All'} ) { 
531       foreach ( amatch($last, [ qw(i) ], @$all_last) ) {
532         $last{$_}++; 
533       }
534     }
535
536     #if ($last_type{'Sound-alike'}) {
537     #}
538
539     foreach ( keys %last ) {
540       push @cust_main, qsearch('cust_main',{'last'=>$_});
541       push @cust_main, qsearch('cust_main',{'ship_last'=>$_})
542         if defined dbdef->table('cust_main')->column('ship_last');
543     }
544
545   }
546
547   \@cust_main;
548 }
549
550 sub companysearch {
551
552   my(%company_type);
553   my @cust_main;
554   foreach ( $cgi->param('company_type') ) {
555     $company_type{$_}++ 
556   };
557
558   $cgi->param('company_text') =~ /^([\w \,\.\-\']*)$/
559     or eidiot "Illegal company";
560   my($company)=$1;
561
562   if ( $company_type{'Exact'} || $company_type{'Fuzzy'} ) {
563     push @cust_main, qsearch( 'cust_main',
564                               { 'company' => { 'op'    => 'ILIKE',
565                                                'value' => $company } } );
566
567     push @cust_main, qsearch( 'cust_main',
568                               { 'ship_company' => { 'op'    => 'ILIKE',
569                                                     'value' => $company } } )
570       if defined dbdef->table('cust_main')->column('ship_last');
571   }
572
573   if ( $company_type{'Substring'} || $company_type{'All'} ) {
574
575     push @cust_main, qsearch( 'cust_main',
576                               { 'company' => { 'op'    => 'ILIKE',
577                                                'value' => "%$company%" } } );
578
579     push @cust_main, qsearch( 'cust_main',
580                               { 'ship_company' => { 'op'    => 'ILIKE',
581                                                     'value' => "%$company%" } })
582       if defined dbdef->table('cust_main')->column('ship_last');
583
584   }
585
586   if ( $company_type{'Fuzzy'} || $company_type{'All'} ) {
587
588     &FS::cust_main::check_and_rebuild_fuzzyfiles;
589     my $all_company = &FS::cust_main::all_company;
590
591     my %company;
592     if ( $company_type{'Fuzzy'} || $company_type{'All'} ) { 
593       foreach ( amatch($company, [ qw(i) ], @$all_company ) ) {
594         $company{$_}++;
595       }
596     }
597
598     #if ($company_type{'Sound-alike'}) {
599     #}
600
601     foreach ( keys %company ) {
602       push @cust_main, qsearch('cust_main',{'company'=>$_});
603       push @cust_main, qsearch('cust_main',{'ship_company'=>$_})
604         if defined dbdef->table('cust_main')->column('ship_last');
605     }
606
607   }
608
609   \@cust_main;
610 }
611
612 sub phonesearch {
613   my @cust_main;
614
615   my $phone = $cgi->param('phone_text');
616
617   #false laziness with Record::ut_phonen, only works with US/CA numbers...
618   $phone =~ s/\D//g;
619   $phone =~ /^(\d{3})(\d{3})(\d{4})(\d*)$/
620     or eidiot gettext('illegal_phone'). ": $phone";
621   $phone = "$1-$2-$3";
622   $phone .= " x$4" if $4;
623
624   my @fields = qw(daytime night fax);
625   push @fields, qw(ship_daytime ship_night ship_fax)
626     if defined dbdef->table('cust_main')->column('ship_last');
627
628   for my $field ( @fields ) {
629     push @cust_main, qsearch ( 'cust_main', 
630                                { $field => { 'op'    => 'LIKE',
631                                              'value' => "$phone%" } } );
632   }
633
634   \@cust_main;
635 }
636
637 %>