1d58ef660cfdacc45cf92cb943b3d5e8abf52dc2
[freeside.git] / httemplate / view / elements / svc_radius_usage.html
1 % if ( $part_svc->part_export_usage ) {
2 %
3 %  my $last_bill;
4 %  my %plandata;
5 %  if ( $cust_pkg ) {
6 %    #false laziness w/httemplate/edit/part_pkg... this stuff doesn't really
7 %    #belong in plan data
8 %    %plandata = map { /^(\w+)=(.*)$/; ( $1 => $2 ); }
9 %                    split("\n", $cust_pkg->part_pkg->plandata );
10 %
11 %    $last_bill = $cust_pkg->last_bill;
12 %  } else {
13 %    $last_bill = 0;
14 %    %plandata = ();
15 %  }
16 %
17 %  my $seconds = $svc->seconds_since_sqlradacct( $last_bill, time );
18 %  my $hour = int($seconds/3600);
19 %  my $min = int( ($seconds%3600) / 60 );
20 %  my $sec = $seconds%60;
21 %
22 %  my $input = $svc->attribute_since_sqlradacct(
23 %    $last_bill, time, 'AcctInputOctets'
24 %  ) / 1048576;
25 %  my $output = $svc->attribute_since_sqlradacct(
26 %    $last_bill, time, 'AcctOutputOctets'
27 %  ) / 1048576;
28
29
30   RADIUS session information<BR>
31   <% ntable('#cccccc',2) %>
32   <TR><TD BGCOLOR="#ffffff">
33 % if ( $seconds ) { 
34
35     Online <B><% $hour %></B>h <B><% $min %></B>m <B><% $sec %></B>s
36 % } else { 
37
38     Has not logged on
39 % } 
40 % if ( $cust_pkg ) { 
41
42     since last bill (<% time2str('%a %b %o %Y', $last_bill) %>)
43 % if ( length($plandata{recur_included_hours}) ) { 
44
45     - <% $plandata{recur_included_hours} %> total hours in plan
46 % } 
47
48     <BR>
49 % } else { 
50
51     (no billing cycle available for unaudited account)<BR>
52 % } 
53
54
55   Upload: <B><% sprintf("%.3f", $input) %></B> megabytes<BR>
56   Download: <B><% sprintf("%.3f", $output) %></B> megabytes<BR>
57 % if ( $svc->table eq 'svc_acct' ) {
58     Last Login: <B><% $svc->last_login_text %></B><BR>
59 % }
60 % my $href = qq!<A HREF="${p}search/sqlradius.cgi?svcnum=!. $svc->svcnum; 
61
62   View session detail:
63       <% $href %>;begin=<% $last_bill %>">this billing cycle</A>
64     | <% $href %>;begin=<% time-15552000 %>">past six months</A>
65     | <% $href %>">all sessions</A>
66
67   </TD></TR></TABLE><BR>
68 % } 
69 <%init>
70
71 my %opt = @_;
72
73 my $svc = $opt{'svc'};
74 my $part_svc = $opt{'part_svc'};
75 my $cust_pkg = $opt{'cust_pkg'};
76
77 </%init>