summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2002-10-17 14:33:13 +0000
committerivan <ivan>2002-10-17 14:33:13 +0000
commit8dc221c91266dc284655942bb5de6392beecbbb3 (patch)
tree01db8e98741f5c9a5d2930060304abad0102ad98 /httemplate
parentacfb0f48c226a5cba64fbe391677391128a6cbf7 (diff)
sqlradacct hour update
Diffstat (limited to 'httemplate')
-rwxr-xr-xhttemplate/view/svc_acct.cgi28
1 files changed, 22 insertions, 6 deletions
diff --git a/httemplate/view/svc_acct.cgi b/httemplate/view/svc_acct.cgi
index dd242b980..d50241d40 100755
--- a/httemplate/view/svc_acct.cgi
+++ b/httemplate/view/svc_acct.cgi
@@ -147,20 +147,36 @@ print '<TR><TD ALIGN="right">RADIUS groups</TD><TD BGCOLOR="#ffffff">'.
print '</TABLE></TD></TR></TABLE><BR><BR>';
#if ( $cust_pkg && $cust_pkg->part_pkg->plan eq 'sqlradacct_hour' ) {
-if ( $cust_pkg && $part_svc->part_export('sqlradius') ) {
+if ( $part_svc->part_export('sqlradius') ) {
+
+ my $last_bill;
+ if ( $cust_pkg ) {
+ #false laziness w/httemplate/edit/part_pkg... this stuff doesn't really
+ #belong in plan data
+ my %plandata = map { /^(\w+)=(.*)$/; ( $1 => $2 ); }
+ split("\n", $cust_pkg->part_pkg->plandata );
+
+ $last_bill = $cust_pkg->last_bill;
+ } else {
+ $last_bill = 0;
+ }
- my $last_bill = $cust_pkg->last_bill;
my $seconds = $svc_acct->seconds_since_sqlradacct( $last_bill, time );
my $h = int($seconds/3600);
my $m = int( ($seconds%3600) / 60 );
my $s = $seconds%60;
+
if ( $seconds ) {
- print 'Online $h h $m m $s s this billing cycle (since '.
- time2str(%C, $last_bill). ') - '.
+ print "Online ${h}h ${m}m ${s}s";
+ } else {
+ print 'Has not logged on';
+ }
+
+ if ( $cust_pkg ) {
+ print ' this billing cycle (since '. time2str(%C, $last_bill). ') - '.
$plandata{recur_included_hours}. ' total hours in plan<BR><BR>';
} else {
- print 'Has not logged on this billing cycle (since '.
- time2str(%C, $last_bill). ')<BR><BR>';
+ print ' (no billing cycle available for unaudited package)<BR><BR>';
}
}