X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=htdocs%2Fsearch%2Fcust_main.cgi;h=8b3092ebab9ef1184129e2de32784c5f9285122c;hb=e890290677daab75e0ce28d5679baddb8a997a8e;hp=03f02e4be8679f33629d8b078685c76a8b528e22;hpb=37dcdd94962587d6dbc3225439c91e46b0b623c5;p=freeside.git diff --git a/htdocs/search/cust_main.cgi b/htdocs/search/cust_main.cgi index 03f02e4be..8b3092eba 100755 --- a/htdocs/search/cust_main.cgi +++ b/htdocs/search/cust_main.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: cust_main.cgi,v 1.9 1999-02-28 00:03:55 ivan Exp $ +# $Id: cust_main.cgi,v 1.15 2000-07-17 16:45:41 ivan Exp $ # # Usage: post form to: # http://server.name/path/cust_main.cgi @@ -17,7 +17,26 @@ # display total, use FS::CGI ivan@sisd.com 98-jul-17 # # $Log: cust_main.cgi,v $ -# Revision 1.9 1999-02-28 00:03:55 ivan +# Revision 1.15 2000-07-17 16:45:41 ivan +# first shot at invoice browsing and some other cleanups +# +# Revision 1.14 1999/08/12 04:45:21 ivan +# typo - missed a paren +# +# Revision 1.13 1999/08/12 04:32:21 ivan +# hidecancelledcustomers +# +# Revision 1.12 1999/07/17 10:38:52 ivan +# scott nelson noticed this mod_perl-triggered bug and +# gave me a great bugreport at the last rhythmethod +# +# Revision 1.11 1999/04/09 04:22:34 ivan +# also table() +# +# 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 @@ -49,7 +68,8 @@ # use strict; -use vars qw(%ncancelled_pkgs %all_pkgs $cgi @cust_main $sortby ); +#use vars qw( $conf %ncancelled_pkgs %all_pkgs $cgi @cust_main $sortby ); +use vars qw( $conf %all_pkgs $cgi @cust_main $sortby ); use CGI; use CGI::Carp qw(fatalsToBrowser); use IO::Handle; @@ -62,6 +82,8 @@ use FS::cust_main; $cgi = new CGI; cgisuidsetup($cgi); +$conf = new FS::Conf; + if ( $cgi->keywords ) { my($query)=$cgi->keywords; if ( $query eq 'custnum' ) { @@ -73,15 +95,23 @@ if ( $cgi->keywords ) { } elsif ( $query eq 'company' ) { $sortby=\*company_sort; @cust_main=qsearch('cust_main',{}); + } else { + die "unknown query string $query"; } } else { + @cust_main=(); &cardsearch if ( $cgi->param('card_on') && $cgi->param('card') ); &lastsearch if ( $cgi->param('last_on') && $cgi->param('last_text') ); &companysearch if ( $cgi->param('company_on') && $cgi->param('company_text') ); } -#%ncancelled_pkgs = map { $_->custnum => [ $_->ncancelled_pkgs ] } @cust_main; -%all_pkgs = map { $_->custnum => [ $_->all_pkgs ] } @cust_main; +@cust_main = grep { $_->ncancelled_pkgs || ! $_->all_pkgs } @cust_main + if $conf->exists('hidecancelledcustomers'); +if ( $conf->exists('hidecancelledpackages' ) ) { + %all_pkgs = map { $_->custnum => [ $_->ncancelled_pkgs ] } @cust_main; +} else { + %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); @@ -93,7 +123,7 @@ if ( scalar(@cust_main) == 1 ) { 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