diff options
author | Mark Wells <mark@freeside.biz> | 2014-04-23 14:03:11 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-04-23 14:03:18 -0700 |
commit | 03ab761a53bffa14d09f23fb8b9702806a1c6b79 (patch) | |
tree | 5e232da7c23466f693f715d0c842d6389e2c7373 /httemplate/search/report_tax.html | |
parent | 6bf2bd02e49b8e1beb8a334e842f56d62e89bd11 (diff) |
tax report improvements, #23449, #25935
Diffstat (limited to 'httemplate/search/report_tax.html')
-rwxr-xr-x | httemplate/search/report_tax.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/search/report_tax.html b/httemplate/search/report_tax.html index 20aa07fc8..ee25f62e7 100755 --- a/httemplate/search/report_tax.html +++ b/httemplate/search/report_tax.html @@ -30,6 +30,7 @@ taxclass => 'Tax class', pkgclass => 'Package class', city => 'City', + district => 'District', }, &> </TABLE> @@ -64,5 +65,8 @@ if ( FS::pkg_class->count() > 0 ) { if ( FS::cust_main_county->count("city is not null and city != ''") > 0 ) { push @breakdown, 'city'; } +if ( FS::cust_main_county->count("district is not null") > 0 ) { + push @breakdown, 'district'; +} </%init> |