summaryrefslogtreecommitdiff
path: root/httemplate/search/report_sqlradius_usage.html
blob: 3f94f29c20cfd88372561f794f12cb084d272b04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%# some overlap with report_sqlradius_usage_custnum.html
<& /elements/header.html, mt($title) &>

<FORM ACTION="sqlradius_usage.html" METHOD="GET">

<TABLE BGCOLOR="#cccccc" CELLSPACING=0>

<& /elements/tr-select-agent.html,
  'multiple'      => 1,
  'disable_empty' => 1,
  #'empty_label'   => 'all',
&>

%#more future-proof to actually ask all exports if they ->can('usage_sessions')
% my @exporttypes = qw( sqlradius sqlradius_withdomain broadband_sqlradius
%                       phone_sqlradius radiator
%                     );
<& /elements/tr-select-table.html,
  'label'         => 'Export',
  'table'         => 'part_export',
  'name_col'      => 'label',
  'hashref'       => {},
  'extra_sql'     => ' WHERE exporttype IN ( '.
                                            join(',', map "'$_'", @exporttypes).
                                          ')',
  'multiple'      => 1,
  'order_by'      => 'ORDER BY exportnum',
&>

<& /elements/tr-input-beginning_ending.html &>

<& /elements/tr-radio.html,
  'field'         => 'combine_svcs',
  'options'       => [ 0, 1 ],
  'labels'        => { 0 => 'Per service',
                       1 => 'Per package',
                     },
  'curr_value'    => 0,
&>

</TABLE>

<BR>
<INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>">

</FORM>

<& /elements/footer.html &>
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Usage: RADIUS sessions');
  # yes?

my $title = 'Data Usage Report';

</%init>