3 # $Id: cust_main.cgi,v 1.14 1999-08-12 04:45:21 ivan Exp $
6 # http://server.name/path/cust_main.cgi
8 # ivan@voicenet.com 96-dec-12
10 # rewrite ivan@sisd.com 98-mar-4
12 # now does browsing too ivan@sisd.com 98-mar-6
14 # Changes to allow page to work at a relative position in server
15 # bmccane@maxbaud.net 98-apr-3
17 # display total, use FS::CGI ivan@sisd.com 98-jul-17
19 # $Log: cust_main.cgi,v $
20 # Revision 1.14 1999-08-12 04:45:21 ivan
21 # typo - missed a paren
23 # Revision 1.13 1999/08/12 04:32:21 ivan
24 # hidecancelledcustomers
26 # Revision 1.12 1999/07/17 10:38:52 ivan
27 # scott nelson <scott@ultimanet.com> noticed this mod_perl-triggered bug and
28 # gave me a great bugreport at the last rhythmethod
30 # Revision 1.11 1999/04/09 04:22:34 ivan
33 # Revision 1.10 1999/04/09 03:52:55 ivan
34 # explicit & for table/itable/ntable
36 # Revision 1.9 1999/02/28 00:03:55 ivan
37 # removed misleading comments
39 # Revision 1.8 1999/02/07 09:59:36 ivan
40 # more mod_perl fixes, and bugfixes Peter Wemm sent via email
42 # Revision 1.7 1999/01/25 12:19:11 ivan
43 # yet more mod_perl stuff
45 # Revision 1.6 1999/01/19 05:14:12 ivan
46 # for mod_perl: no more top-level my() variables; use vars instead
47 # also the last s/create/new/;
49 # Revision 1.5 1999/01/18 09:41:37 ivan
50 # all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
53 # Revision 1.4 1998/12/30 00:57:50 ivan
56 # Revision 1.3 1998/12/17 09:41:08 ivan
57 # s/CGI::(Base|Request)/CGI.pm/;
59 # Revision 1.2 1998/11/12 08:10:22 ivan
60 # CGI.pm instead of CGI-modules
61 # relative URLs using popurl
62 # got rid of lots of little tables
63 # s/agrep/String::Approx/;
64 # bubble up packages and services and link (slow)
68 #use vars qw( $conf %ncancelled_pkgs %all_pkgs $cgi @cust_main $sortby );
69 use vars qw( $conf %all_pkgs $cgi @cust_main $sortby );
71 use CGI::Carp qw(fatalsToBrowser);
73 use String::Approx qw(amatch);
74 use FS::UID qw(cgisuidsetup);
75 use FS::Record qw(qsearch qsearchs);
76 use FS::CGI qw(header menubar eidiot popurl table);
84 if ( $cgi->keywords ) {
85 my($query)=$cgi->keywords;
86 if ( $query eq 'custnum' ) {
87 $sortby=\*custnum_sort;
88 @cust_main=qsearch('cust_main',{});
89 } elsif ( $query eq 'last' ) {
91 @cust_main=qsearch('cust_main',{});
92 } elsif ( $query eq 'company' ) {
93 $sortby=\*company_sort;
94 @cust_main=qsearch('cust_main',{});
98 &cardsearch if ( $cgi->param('card_on') && $cgi->param('card') );
99 &lastsearch if ( $cgi->param('last_on') && $cgi->param('last_text') );
100 &companysearch if ( $cgi->param('company_on') && $cgi->param('company_text') );
103 @cust_main = grep { $_->ncancelled_pkgs || ! $_->all_pkgs } @cust_main
104 if $conf->exists('hidecancelledcustomers');
105 if ( $conf->exists('hidecancelledpackages' ) ) {
106 %all_pkgs = map { $_->custnum => [ $_->ncancelled_pkgs ] } @cust_main;
108 %all_pkgs = map { $_->custnum => [ $_->all_pkgs ] } @cust_main;
111 if ( scalar(@cust_main) == 1 ) {
112 print $cgi->redirect(popurl(2). "view/cust_main.cgi?". $cust_main[0]->custnum);
114 } elsif ( scalar(@cust_main) == 0 ) {
115 eidiot "No matching customers found!\n";
118 my($total)=scalar(@cust_main);
119 print $cgi->header( '-expires' => 'now' ), header("Customer Search Results",menubar(
120 'Main Menu', popurl(2)
121 )), "$total matching customers found<BR>", &table(), <<END;
124 <TH>Contact name</TH>
127 <TH COLSPAN=2>Services</TH>
133 sort $sortby grep(!$saw{$_->custnum}++, @cust_main)
135 my($custnum,$last,$first,$company)=(
137 $cust_main->getfield('last'),
138 $cust_main->getfield('first'),
143 my($rowspan)=0;#scalar( @{$all_pkgs{$custnum}} );
144 foreach ( @{$all_pkgs{$custnum}} ) {
145 my(@cust_svc) = qsearch( 'cust_svc', { 'pkgnum' => $_->pkgnum } );
146 push @lol_cust_svc, \@cust_svc;
147 $rowspan += scalar(@cust_svc) || 1;
150 #my($rowspan) = scalar(@{$all_pkgs{$custnum}});
151 my($view) = popurl(2). "view/cust_main.cgi?$custnum";
154 <TD ROWSPAN=$rowspan><A HREF="$view"><FONT SIZE=-1>$custnum</FONT></A></TD>
155 <TD ROWSPAN=$rowspan><A HREF="$view"><FONT SIZE=-1>$last, $first</FONT></A></TD>
156 <TD ROWSPAN=$rowspan><A HREF="$view"><FONT SIZE=-1>$company</FONT></A></TD>
160 foreach ( @{$all_pkgs{$custnum}} ) {
161 my($pkgnum) = ($_->pkgnum);
162 my($pkg) = $_->part_pkg->pkg;
163 my $comment = $_->part_pkg->comment;
164 my($pkgview) = popurl(2). "/view/cust_pkg.cgi?$pkgnum";
165 #my(@cust_svc) = shift @lol_cust_svc;
166 my(@cust_svc) = qsearch( 'cust_svc', { 'pkgnum' => $_->pkgnum } );
167 my($rowspan) = scalar(@cust_svc) || 1;
169 print $n1, qq!<TD ROWSPAN=$rowspan><A HREF="$pkgview"><FONT SIZE=-1>$pkg - $comment</FONT></A></TD>!;
171 foreach my $cust_svc ( @cust_svc ) {
172 my($label, $value, $svcdb) = $cust_svc->label;
173 my($svcnum) = $cust_svc->svcnum;
174 my($sview) = popurl(2). "/view";
175 print $n2,qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$label</FONT></A></TD>!,
176 qq!<TD><A HREF="$sview/$svcdb.cgi?$svcnum"><FONT SIZE=-1>$value</FONT></A></TD>!;
179 #print qq!</TR><TR>\n!;
196 $a->getfield('last') cmp $b->getfield('last');
200 return -1 if $a->company && ! $b->company;
201 return 1 if ! $a->company && $b->company;
202 $a->getfield('company') cmp $b->getfield('company');
206 $a->getfield('custnum') <=> $b->getfield('custnum');
211 my($card)=$cgi->param('card');
213 $card =~ /^(\d{13,16})$/ or eidiot "Illegal card number\n";
216 push @cust_main, qsearch('cust_main',{'payinfo'=>$payinfo, 'payby'=>'CARD'});
222 foreach ( $cgi->param('last_type') ) {
226 $cgi->param('last_text') =~ /^([\w \,\.\-\']*)$/
227 or eidiot "Illegal last name";
230 if ( $last_type{'Exact'}
231 && ! $last_type{'Fuzzy'}
232 # && ! $last_type{'Sound-alike'}
235 push @cust_main, qsearch('cust_main',{'last'=>$last});
241 my(@all_last)=map $_->getfield('last'), qsearch('cust_main',{});
242 if ($last_type{'Fuzzy'}) {
243 foreach ( amatch($last, [ qw(i) ], @all_last) ) {
248 #if ($last_type{'Sound-alike'}) {
251 foreach ( keys %last ) {
252 push @cust_main, qsearch('cust_main',{'last'=>$_});
262 foreach ( $cgi->param('company_type') ) {
266 $cgi->param('company_text') =~ /^([\w \,\.\-\']*)$/
267 or eidiot "Illegal company";
270 if ( $company_type{'Exact'}
271 && ! $company_type{'Fuzzy'}
272 # && ! $company_type{'Sound-alike'}
275 push @cust_main, qsearch('cust_main',{'company'=>$company});
280 my(@all_company)=map $_->company, qsearch('cust_main',{});
282 if ($company_type{'Fuzzy'}) {
283 foreach ( amatch($company, [ qw(i) ], @all_company ) ) {
288 #if ($company_type{'Sound-alike'}) {
291 foreach ( keys %company ) {
292 push @cust_main, qsearch('cust_main',{'company'=>$_});
296 $sortby=\*company_sort;