diff options
author | ivan <ivan> | 2010-10-31 19:04:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-10-31 19:04:56 +0000 |
commit | 5ca9ba1f1e2831b1f22bbaeb414e68202093515a (patch) | |
tree | 0ea21f377cd93309a7dfe19a463f588ac3ed93fb /httemplate | |
parent | b7858740e458e761b173f0e38f547c0e2f75b240 (diff) |
add search on harcoded geocode customers w/cch, RT#10376
Diffstat (limited to 'httemplate')
-rwxr-xr-x | httemplate/search/cust_main.html | 2 | ||||
-rwxr-xr-x | httemplate/search/report_cust_main.html | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/httemplate/search/cust_main.html b/httemplate/search/cust_main.html index 57538d8ca..5bfdf170b 100755 --- a/httemplate/search/cust_main.html +++ b/httemplate/search/cust_main.html @@ -45,7 +45,7 @@ my %search_hash = (); #scalars my @scalars = qw ( agentnum status address paydate_year paydate_month invoice_terms - no_censustract custbatch usernum + no_censustract with_geocode custbatch usernum cancelled_pkgs cust_fields flattened_pkgs ); diff --git a/httemplate/search/report_cust_main.html b/httemplate/search/report_cust_main.html index 5b1b878af..03b3452d6 100755 --- a/httemplate/search/report_cust_main.html +++ b/httemplate/search/report_cust_main.html @@ -110,13 +110,18 @@ <TD><INPUT TYPE="checkbox" NAME="cancelled_pkgs"></TD> </TR> -% if ( $conf->exists('cust_main-require_censustract') ) { - <TR> <TD ALIGN="right" VALIGN="center">Without census tract</TD> <TD><INPUT TYPE="checkbox" NAME="no_censustract"></TD> </TR> +% if ( $conf->exists('enable_taxproducts') ) { + + <TR> + <TD ALIGN="right" VALIGN="center">With hardcoded tax location</TD> + <TD><INPUT TYPE="checkbox" NAME="with_geocode"></TD> + </TR> + % } <TR> |