X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=htdocs%2Fsearch%2Fcust_main.cgi;h=1a9c591a18a2eaf25ce217f67c2abd6bc0d06078;hb=b6d1aed30d51bdae49ca22e5aa5baab635969097;hp=a50cee88fc71af840fb0b3343f8349c2ea802f28;hpb=c116ce940c33dcd7e37a87a8eb2936e17cc68b11;p=freeside.git diff --git a/htdocs/search/cust_main.cgi b/htdocs/search/cust_main.cgi index a50cee88f..1a9c591a1 100755 --- a/htdocs/search/cust_main.cgi +++ b/htdocs/search/cust_main.cgi @@ -1,12 +1,10 @@ #!/usr/bin/perl -Tw # -# $Id: cust_main.cgi,v 1.6 1999-01-19 05:14:12 ivan Exp $ +# $Id: cust_main.cgi,v 1.10 1999-04-09 03:52:55 ivan Exp $ # # Usage: post form to: # http://server.name/path/cust_main.cgi # -# Note: Should be run setuid freeside as user nobody. -# # ivan@voicenet.com 96-dec-12 # # rewrite ivan@sisd.com 98-mar-4 @@ -19,7 +17,19 @@ # display total, use FS::CGI ivan@sisd.com 98-jul-17 # # $Log: cust_main.cgi,v $ -# Revision 1.6 1999-01-19 05:14:12 ivan +# Revision 1.10 1999-04-09 03:52:55 ivan +# explicit & for table/itable/ntable +# +# Revision 1.9 1999/02/28 00:03:55 ivan +# removed misleading comments +# +# Revision 1.8 1999/02/07 09:59:36 ivan +# more mod_perl fixes, and bugfixes Peter Wemm sent via email +# +# Revision 1.7 1999/01/25 12:19:11 ivan +# yet more mod_perl stuff +# +# Revision 1.6 1999/01/19 05:14:12 ivan # for mod_perl: no more top-level my() variables; use vars instead # also the last s/create/new/; # @@ -49,7 +59,7 @@ use IO::Handle; use String::Approx qw(amatch); use FS::UID qw(cgisuidsetup); use FS::Record qw(qsearch qsearchs); -use FS::CGI qw(header menubar idiot popurl table); +use FS::CGI qw(header menubar eidiot popurl table); use FS::cust_main; $cgi = new CGI; @@ -73,21 +83,20 @@ if ( $cgi->keywords ) { &companysearch if ( $cgi->param('company_on') && $cgi->param('company_text') ); } -%ncancelled_pkgs = map { $_->custnum => [ $_->ncancelled_pkgs ] } @cust_main; +#%ncancelled_pkgs = map { $_->custnum => [ $_->ncancelled_pkgs ] } @cust_main; %all_pkgs = map { $_->custnum => [ $_->all_pkgs ] } @cust_main; if ( scalar(@cust_main) == 1 ) { print $cgi->redirect(popurl(2). "view/cust_main.cgi?". $cust_main[0]->custnum); exit; } elsif ( scalar(@cust_main) == 0 ) { - idiot "No matching customers found!\n"; - exit; + eidiot "No matching customers found!\n"; } else { my($total)=scalar(@cust_main); print $cgi->header( '-expires' => 'now' ), header("Customer Search Results",menubar( 'Main Menu', popurl(2) - )), "$total matching customers found
", table, <", &table, < Contact name @@ -129,12 +138,13 @@ END foreach ( @{$all_pkgs{$custnum}} ) { my($pkgnum) = ($_->pkgnum); my($pkg) = $_->part_pkg->pkg; + my $comment = $_->part_pkg->comment; my($pkgview) = popurl(2). "/view/cust_pkg.cgi?$pkgnum"; #my(@cust_svc) = shift @lol_cust_svc; my(@cust_svc) = qsearch( 'cust_svc', { 'pkgnum' => $_->pkgnum } ); my($rowspan) = scalar(@cust_svc) || 1; - print $n1, qq!$pkg!; + print $n1, qq!$pkg - $comment!; my($n2)=''; foreach my $cust_svc ( @cust_svc ) { my($label, $value, $svcdb) = $cust_svc->label; @@ -152,7 +162,6 @@ END print < - END @@ -179,7 +188,7 @@ sub cardsearch { my($card)=$cgi->param('card'); $card =~ s/\D//g; - $card =~ /^(\d{13,16})$/ or do { idiot "Illegal card number\n"; exit; }; + $card =~ /^(\d{13,16})$/ or eidiot "Illegal card number\n"; my($payinfo)=$1; push @cust_main, qsearch('cust_main',{'payinfo'=>$payinfo, 'payby'=>'CARD'}); @@ -193,7 +202,7 @@ sub lastsearch { } $cgi->param('last_text') =~ /^([\w \,\.\-\']*)$/ - or do { idiot "Illegal last name"; exit; }; + or eidiot "Illegal last name"; my($last)=$1; if ( $last_type{'Exact'} @@ -233,7 +242,7 @@ sub companysearch { }; $cgi->param('company_text') =~ /^([\w \,\.\-\']*)$/ - or do { idiot "Illegal company"; exit; }; + or eidiot "Illegal company"; my($company)=$1; if ( $company_type{'Exact'}