From: ivan Date: Mon, 14 Oct 2002 06:16:05 +0000 (+0000) Subject: show time online this billing cycle on view account screen X-Git-Tag: freeside_1_4_1beta5~50 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=a60236063190e34d918210c40e0815bc551a4a70;p=freeside.git show time online this billing cycle on view account screen --- diff --git a/httemplate/view/svc_acct.cgi b/httemplate/view/svc_acct.cgi index ecea97426..d10b706df 100755 --- a/httemplate/view/svc_acct.cgi +++ b/httemplate/view/svc_acct.cgi @@ -149,8 +149,38 @@ if ($svc_acct->slipip) { print 'RADIUS groups'. join('
', $svc_acct->radius_groups). ''; -print '

'. - join("\n", $conf->config('svc_acct-notes') ). - '

'. joblisting({'svcnum'=>$svcnum}, 1). ''; +print '

'; + +if ( $cust_pkg && $cust_pkg->part_pkg->plan eq 'sqlradacct_hour' ) { + + #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 ); + + my $last_bill = $cust_pkg->last_bill; + my $seconds = $svc_acct->seconds_since_sqlradacct( + $last_bill, + time, + $plandata{sql_datasrc}, + $plandata{sql_username}, + $plandata{sql_password}, + ); + 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). ') - '. + $plandata{recur_included_hours}. ' total hours in plan

'; + } else { + print 'Has not logged on this billing cycle (since '. + time2str(%C, $last_bill). ')

'; + } + +} + +print join("\n", $conf->config('svc_acct-notes') ). '

'. + joblisting({'svcnum'=>$svcnum}, 1). ''; %>