From 022491d9d2723ca4d7d0718cdb1fd67e7652428e Mon Sep 17 00:00:00 2001 From: cvs2git Date: Wed, 7 Apr 2004 09:08:35 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'NET_WHOIS_RAW_0_31'. --- httemplate/edit/cust_main_county.cgi | 98 ------------------------------------ 1 file changed, 98 deletions(-) delete mode 100755 httemplate/edit/cust_main_county.cgi (limited to 'httemplate/edit/cust_main_county.cgi') diff --git a/httemplate/edit/cust_main_county.cgi b/httemplate/edit/cust_main_county.cgi deleted file mode 100755 index 4bcfcbe9b..000000000 --- a/httemplate/edit/cust_main_county.cgi +++ /dev/null @@ -1,98 +0,0 @@ - -<% - -print header("Edit tax rates", menubar( - 'Main Menu' => popurl(2), -)); - -print qq!Error: !, $cgi->param('error'), - "" - if $cgi->param('error'); - -print qq!
!, &table(), < - Country - State - County - Taxclass
(per-package classification) -END - -if ( dbdef->table('cust_main_county')->column('taxname') ) { - print 'Tax name
(printed on invoices)'; -} - -print <Tax - Exempt
per
month -END - -if ( dbdef->table('cust_main_county')->column('setuptax') ) { - print 'Setup
fee
exempt'; -} -if ( dbdef->table('cust_main_county')->column('recurtax') ) { - print 'Recurring
fee
exempt'; -} - -print ''; - -foreach my $cust_main_county ( sort { $a->country cmp $b->country - or $a->state cmp $b->state - or $a->county cmp $b->county - } qsearch('cust_main_county',{}) ) { - my($hashref)=$cust_main_county->hashref; - print < - $hashref->{country} -END - - print "{state} - ? ' BGCOLOR="#ffffff">'.$hashref->{state} - : ' BGCOLOR="#cccccc">(ALL)' - , ""; - - print "{county} - ? ' BGCOLOR="#ffffff">'. $hashref->{county} - : ' BGCOLOR="#cccccc">(ALL)' - , ""; - - print "{taxclass} - ? ' BGCOLOR="#ffffff">'. $hashref->{taxclass} - : ' BGCOLOR="#cccccc">(ALL)' - , ""; - - print qq!! - if dbdef->table('cust_main_county')->column('taxname'); - - print qq!
%
!; - print qq!
\$
!; - - print qq!{setuptax} =~ /^Y$/i ? ' CHECKED' : '' ). - '>' - if dbdef->table('cust_main_county')->column('setuptax'); - - print qq!{recurtax} =~ /^Y$/i ? ' CHECKED' : '' ). - '>' - if dbdef->table('cust_main_county')->column('recurtax'); - - print ''; - -} - -print < - - - - - -END - -%> -- cgit v1.2.1