From c82d349f864e6bd9f96fd1156903bc1f7193a203 Mon Sep 17 00:00:00 2001 From: cvs2git Date: Mon, 27 Dec 2010 00:04:45 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'. --- httemplate/edit/cust_main_county.html | 64 ----------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 httemplate/edit/cust_main_county.html (limited to 'httemplate/edit/cust_main_county.html') diff --git a/httemplate/edit/cust_main_county.html b/httemplate/edit/cust_main_county.html deleted file mode 100644 index 11b8e43cd..000000000 --- a/httemplate/edit/cust_main_county.html +++ /dev/null @@ -1,64 +0,0 @@ -<% include('elements/edit.html', - 'popup' => 1, - 'name' => 'Tax rate', #Edit tax rate - 'table' => 'cust_main_county', - 'labels' => { 'taxnum' => 'Tax', - 'country' => 'Country', - 'state' => 'State', - 'county' => 'County', - 'city' => 'City', - 'taxclass' => 'Tax class', - 'taxname' => 'Tax name', - 'tax' => 'Tax rate', - 'setuptax' => 'This tax not applicable to setup fees', - 'recurtax' => 'This tax not applicable to recurring fees', - 'exempt_amount' => 'Monthly exemption per customer ($25 "Texas tax")', - }, - 'fields' => \@fields, - ) -%> -<%once> - -my $conf = new FS::Conf; - - -<%init> - -die "access denied" - unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); - -my $taxnum; -if ( $cgi->param('error') ) { - $cgi->param('taxnum') =~ /^(\d+)$/ - or die "no taxnum, but error: ". $cgi->param('error'); - $taxnum = $1; -} else { - my($query) = $cgi->keywords; - $query =~ /^(\d+)$/ or die 'no taxnum'; - $taxnum = $1; -} - -my $cust_main_county = qsearchs('cust_main_county', { 'taxnum' => $taxnum }) - or die "unknown taxnum $1"; - -my @fields = ( - { field=>'country', type=>'fixed-country', }, - { field=>'state', type=>'fixed-state', }, - { field=>'county', type=>'fixed', }, - { field=>'city', type=>'fixed', }, -); - -push @fields, { field=>'taxclass', type=>'fixed', } - if $conf->exists('enable_taxclasses'); - -push @fields, - 'taxname', - { field=>'tax', type=>'percentage', }, - - { type=>'tablebreak-tr-title', value=>'Exemptions' }, - { field=>'setuptax', type=>'checkbox', value=>'Y', }, - { field=>'recurtax', type=>'checkbox', value=>'Y', }, - { field=>'exempt_amount', type=>'money', }, -; - - -- cgit v1.2.1