diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-07-17 20:21:07 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-07-17 20:21:07 -0700 |
commit | d10a3e73a1c3e46f2c784d2aa4e7b3e621c336e2 (patch) | |
tree | 4fce930e79954af6290e515a26486e9fccad6cad /httemplate/search/elements/options_cust_location.html | |
parent | 249bad71904f776d6cc58a9f94cfd25ee10c2834 (diff) |
search for payments by customer location, RT#76691
Diffstat (limited to 'httemplate/search/elements/options_cust_location.html')
-rw-r--r-- | httemplate/search/elements/options_cust_location.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/httemplate/search/elements/options_cust_location.html b/httemplate/search/elements/options_cust_location.html new file mode 100644 index 000000000..28ad34a7e --- /dev/null +++ b/httemplate/search/elements/options_cust_location.html @@ -0,0 +1,58 @@ + + <TR> + <TH ALIGN="right" VALIGN="center"><% mt('Address') |h %></TH> + <TD><INPUT TYPE="text" NAME="address" SIZE=54></TD> + </TR> + + <TR> + <TH ALIGN="right" VALIGN="center"><% mt('City') |h %></TH> + <TD> + <& /elements/city.html, + disable_empty => 0, + empty_label => '(all)', + disable_text => 1, + &> + </TD> + </TR> + + <TR> + <TH ALIGN="right" VALIGN="center"><% mt('County') |h %></TH> + <TD> + <& /elements/select-county.html, + disable_empty => 0, + empty_label => '(all)', + &> + </TD> + </TR> + + <TR> + <TH ALIGN="right" VALIGN="center"><% mt('State') |h %></TH> + <TD> + <& /elements/select-state.html, + disable_empty => 0, + empty_label => '(all)', + &> + </TD> + </TR> + + <TR> + <TH ALIGN="right" VALIGN="center"><% mt('Zip') |h %></TH> + <TD><INPUT TYPE="text" NAME="zip" SIZE=12></TD> + </TR> + + <TR> + <TH ALIGN="right" VALIGN="center"><% mt('Country') |h %></TH> + <TD> + <& /elements/select-country.html, + disable_empty => 0, + state_disable_empty => 0, + state_empty_label => '(all)', + &> + </TD> + </TR> + + <TR> + <TH ALIGN="right" VALIGN="center"><% mt('Search historical addresses') %></TH> + <TD><INPUT TYPE="checkbox" NAME="location_history" VALUE="1"></TD> + + |