diff options
author | Mark Wells <mark@freeside.biz> | 2013-03-25 16:35:52 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-03-25 16:35:52 -0700 |
commit | 97356847f631d26f42a8fe0ea7adac580e41549c (patch) | |
tree | 8361ad62c91c0af23179260cdeea1a457567ce33 /httemplate | |
parent | dfc85a4245f2d15f258d840b98f0508c50228e40 (diff) |
ANY/ALL customer tag search option, #19166
Diffstat (limited to 'httemplate')
-rwxr-xr-x | httemplate/search/cust_main.html | 1 | ||||
-rwxr-xr-x | httemplate/search/report_cust_main.html | 20 |
2 files changed, 16 insertions, 5 deletions
diff --git a/httemplate/search/cust_main.html b/httemplate/search/cust_main.html index 8b39ea962..af9e95998 100755 --- a/httemplate/search/cust_main.html +++ b/httemplate/search/cust_main.html @@ -46,6 +46,7 @@ my @scalars = qw ( custbatch usernum cancelled_pkgs cust_fields flattened_pkgs + all_tags ); for my $param ( @scalars ) { diff --git a/httemplate/search/report_cust_main.html b/httemplate/search/report_cust_main.html index acc49aec6..13f9396b9 100755 --- a/httemplate/search/report_cust_main.html +++ b/httemplate/search/report_cust_main.html @@ -96,11 +96,21 @@ </TR> % } - <& /elements/tr-select-cust_tag.html, - 'cgi' => $cgi, - 'is_report' => 1, - 'multiple' => 1, - &> + <TR> + <TD ALIGN="right">Tags</TD> + <TD> + <& /elements/select-cust_tag.html, + 'cgi' => $cgi, + 'is_report' => 1, + 'multiple' => 1, + &> + <DIV STYLE="display:inline-block; vertical-align:baseline"> + <INPUT TYPE="radio" NAME="all_tags" VALUE="0" CHECKED> Any of these + <BR> + <INPUT TYPE="radio" NAME="all_tags" VALUE="1"> All of these + </DIV> + </TD> + </TR> <& /elements/tr-select-payby.html, 'payby_type' => 'cust', |