improve speed in customer search, #13364
[freeside.git] / httemplate / search / report_cust_bill.html
index f1b7bfa..4be5f73 100644 (file)
@@ -1,28 +1,54 @@
-<%= include('/elements/header.html', 'Invoice report criteria' ) %>
+<& /elements/header.html, mt('Invoice Report') &>
 
 <FORM ACTION="cust_bill.html" METHOD="GET">
 <INPUT TYPE="hidden" NAME="magic" VALUE="_date">
 
-<TABLE>
-  <%= include( '/elements/tr-select-agent.html',
-                 $cgi->param('agentnum'),
-                 'label' => 'Invoices for agent: ',
-             )
-  %>
-  <%= include( '/elements/tr-input-beginning_ending.html' ) %>
+<TABLE BGCOLOR="#cccccc" CELLSPACING=0
+
+  <& /elements/tr-select-agent.html,
+                 'curr_value'    => scalar( $cgi->param('agentnum') ),
+                 'label'         => emt('Invoices for agent: '),
+                 'disable_empty' => 0,
+  &>
+
+  <& /elements/tr-input-beginning_ending.html &>
+
+  <& /elements/tr-input-lessthan_greaterthan.html,
+                label   => emt('Charged'),
+                field   => 'charged',
+  &>
+
+  <& /elements/tr-input-lessthan_greaterthan.html,
+                label   => emt('Owed'),
+                field   => 'owed',
+  &>
+  <& /elements/tr-select-payby.html,
+                label   => emt('Payment method:'),
+                payby_type   => 'cust',
+                multiple     => 1,
+                all_selected => 1,
+  &>
+
   <TR>
     <TD ALIGN="right"><INPUT TYPE="checkbox" NAME="open" VALUE="1" CHECKED></TD>
-    <TD>Show only open invoices</TD>
+    <TD><% mt('Show only open invoices') |h %></TD>
   </TR>
   <TR>
     <TD ALIGN="right"><INPUT TYPE="checkbox" NAME="newest_percust" VALUE="1"></TD>
-    <TD>Show only the single most recent invoice per-customer</TD>
+    <TD><% mt('Show only the single most recent invoice per-customer') |h %></TD>
   </TR>
+
 </TABLE>
 
 <BR>
-<INPUT TYPE="submit" VALUE="Get Report">
+<INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>">
 
 </FORM>
 
-<%= include('/elements/footer.html') %>
+<& /elements/footer.html &>
+<%init>
+
+die "access denied"
+  unless $FS::CurrentUser::CurrentUser->access_right('List invoices');
+
+</%init>