default to a session cookie instead of setting an explicit timeout, weird timezone...
[freeside.git] / httemplate / search / report_cust_event_fee.html
1 <& /elements/header.html, 'Billing event fees' &>
2
3     <FORM ACTION="cust_event_fee.html" METHOD="GET">
4
5     <FONT CLASS="fsinnerbox-title"><% emt('Search options') %></FONT>
6     <TABLE CLASS="fsinnerbox">
7
8 <%doc>
9 # potentially could search on any of these
10
11       <% include( '/elements/tr-select-agent.html', 'disable_empty'=>0 ) %>
12
13       <% include( '/elements/tr-select-cust_main-status.html',
14                     'label' => 'Customer status',
15                     # this field is just called 'status'
16                 )
17       %>
18 </%doc>
19
20       <& /elements/tr-select-part_event.html,
21                     'label'        => 'Events',
22                     'multiple'     => 1,
23                     'all_selected' => 1,
24       &>
25
26       <& /elements/tr-select.html,
27                     'label'      => 'Invoiced',
28                     'field'      => 'billpkgnum',
29                     'curr_value' => '',
30                     'options'    => [ '', 'NULL', 'NOT NULL' ],
31                     'labels'     => { ''         => 'Pending and invoiced',
32                                       'NULL'     => 'Pending only',
33                                       'NOT NULL' => 'Invoiced only',
34                                     },
35       &>
36
37       <& /elements/tr-input-beginning_ending.html &>
38
39     </TABLE>
40     <BR><INPUT TYPE="submit" VALUE="Get Report">
41     </FORM>
42
43 <& /elements/footer.html &>
44 <%init>
45
46 die "access denied"
47   unless $FS::CurrentUser::CurrentUser->access_right('Billing event reports');
48
49 </%init>