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