diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2021-03-03 14:40:58 -0800 | 
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2021-03-03 14:40:58 -0800 | 
| commit | 6ce883149b149641dfc6fe5c55d0a3338736c4bd (patch) | |
| tree | f21632cc2d37ca181b1af54a61f8a4d6cdce323b | |
| parent | 97c2b2590624401ff41d8f12df0b5f3b8ec57268 (diff) | |
4.x-style
| -rw-r--r-- | httemplate/search/elements/report_svc_Common.html | 34 | 
1 files changed, 16 insertions, 18 deletions
| diff --git a/httemplate/search/elements/report_svc_Common.html b/httemplate/search/elements/report_svc_Common.html index 434197078..d57e64feb 100644 --- a/httemplate/search/elements/report_svc_Common.html +++ b/httemplate/search/elements/report_svc_Common.html @@ -20,11 +20,8 @@ Example:  <INPUT TYPE="hidden" NAME="magic" VALUE="advanced">  <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>"> -  <TABLE BGCOLOR="#cccccc" CELLSPACING=0> - -    <TR> -      <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1"><% mt('Search options') |h %></FONT></TH> -    </TR> +  <FONT CLASS="fsinnerbox-title"><% emt('Search options') %></FONT> +  <TABLE CLASS="fsinnerbox">  % unless ( $custnum ) { @@ -38,12 +35,15 @@ Example:           field         => 'cust_status',      &> -    <& /elements/tr-select-payby.html, -         label         => emt('Payment method:'), -         payby_type    => 'cust', -         multiple      => 1, -         all_selected  => 1, -    &> +%# meaning-less in the post-4.x world, customers can have multiple payment +%# methods now + +%#    <& /elements/tr-select-payby.html, +%#         label         => emt('Payment method:'), +%#         payby_type    => 'cust', +%#         multiple      => 1, +%#         all_selected  => 1, +%#    &>      <& /elements/tr-input-money.html,           label         => 'Balance over', @@ -72,13 +72,11 @@ Example:           'label' => 'Services',      &>  -    <TR> -      <TH CLASS="background" COLSPAN=2> </TH> -    </TR> -  -    <TR> -      <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1"><% mt('Display options') |h %></FONT></TH> -    </TR> +  </TABLE> +  <BR> + +  <FONT CLASS="fsinnerbox-title"><% emt('Display options') %></FONT> +  <TABLE CLASS="fsinnerbox">  %   #"package fields" ala advanced svc_acct search?  %   #move to /elements/tr-select-cust_pkg-fields and use it from there if so... | 
