improve speed in customer search, #13364
[freeside.git] / httemplate / search / cust_bill_event.html
index 2aa2ccc..0f84a55 100755 (executable)
@@ -4,11 +4,14 @@
    )
 %>
 
+    <FONT SIZE="+1">Invoice events are the deprecated, old-style actions taken
+    on open invoices.  See Reports-&gt;Billing events-&gt;Billing events for current event reports.</FONT><BR><BR>
+
     <FORM ACTION="cust_bill_event.cgi" METHOD="GET">
-    <INPUT TYPE="hidden" NAME="failed" VALUE="<% $cgi->param('failed') %>">
+    <INPUT TYPE="hidden" NAME="failed" VALUE="<% $cgi->param('failed') ? 1 : 0 %>">
     <TABLE>
 
-      <% include( '/elements/tr-select-agent.html' ) %>
+      <% include( '/elements/tr-select-agent.html', 'disable_empty'=>0 ) %>
 
       <!--<TR>
         <TD ALIGN="right">Customer type</TD>
@@ -56,3 +59,9 @@
     </FORM>
 
 <% include('/elements/footer.html') %>
+<%init>
+
+die "access denied"
+  unless $FS::CurrentUser::CurrentUser->access_right('Billing event reports');
+
+</%init>