X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=htdocs%2Fbrowse%2Fcust_main_county.cgi;h=5d7e775737bea0cbe61510cf91f8b8dc8df7c703;hb=b6d1aed30d51bdae49ca22e5aa5baab635969097;hp=4defa574da3e0d068b37fc2f66deac9716b54796;hpb=ef834d58bfd2ce38c8bea73262c8091a5d88388f;p=freeside.git diff --git a/htdocs/browse/cust_main_county.cgi b/htdocs/browse/cust_main_county.cgi index 4defa574d..5d7e77573 100755 --- a/htdocs/browse/cust_main_county.cgi +++ b/htdocs/browse/cust_main_county.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: cust_main_county.cgi,v 1.2 1998-11-18 09:01:34 ivan Exp $ +# $Id: cust_main_county.cgi,v 1.6 1999-04-09 03:52:55 ivan Exp $ # # ivan@sisd.com 97-dec-13 # @@ -10,11 +10,26 @@ # lose background, FS::CGI ivan@sisd.com 98-sep-2 # # $Log: cust_main_county.cgi,v $ -# Revision 1.2 1998-11-18 09:01:34 ivan +# Revision 1.6 1999-04-09 03:52:55 ivan +# explicit & for table/itable/ntable +# +# Revision 1.5 1999/01/19 05:13:26 ivan +# for mod_perl: no more top-level my() variables; use vars instead +# also the last s/create/new/; +# +# Revision 1.4 1999/01/18 09:41:16 ivan +# all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl +# (good idea anyway) +# +# Revision 1.3 1998/12/17 05:25:18 ivan +# fix visual and other bugs +# +# Revision 1.2 1998/11/18 09:01:34 ivan # i18n! i18n! # use strict; +use vars qw( $cgi $p $cust_main_county ); use CGI; use CGI::Carp qw(fatalsToBrowser); use FS::UID qw(cgisuidsetup swapuid); @@ -22,19 +37,21 @@ use FS::Record qw(qsearch qsearchs); use FS::CGI qw(header menubar popurl table); use FS::cust_main_county; -my($cgi) = new CGI; +$cgi = new CGI; &cgisuidsetup($cgi); -print $cgi->header, header("Tax Rate Listing", menubar( - 'Main Menu' => popurl(2), - 'Edit tax rates' => popurl(2). "/edit/cust_main_county.cgi", +$p = popurl(2); + +print $cgi->header( '-expires' => 'now' ), header("Tax Rate Listing", menubar( + 'Main Menu' => $p, + 'Edit tax rates' => $p. "edit/cust_main_county.cgi", )),<expand country to specify a country's tax rates by state.
Click on expand state to specify a state's tax rates by county.

END -print table, < Country State @@ -43,7 +60,6 @@ print table, < END -my($cust_main_county); foreach $cust_main_county ( qsearch('cust_main_county',{}) ) { my($hashref)=$cust_main_county->hashref; print <", $hashref->{state} ? $hashref->{state} : qq!(ALL) !. - qq!{taxnum}. qq!">expand country! , ""; print ""; @@ -63,7 +79,7 @@ END print "(ALL)"; if ( $hashref->{state} ) { print qq!!. - qq!{taxnum}. qq!">expand state!; } }