X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fsvc_acct.cgi;h=dd242b980775c64388ff3b78f72f4722cfcd5dfe;hb=acfb0f48c226a5cba64fbe391677391128a6cbf7;hp=19953bafdeab9f11f85ae1d07810dfab56a6c86a;hpb=df3365357d0b1cae7fd3159585db186f28953ce5;p=freeside.git diff --git a/httemplate/view/svc_acct.cgi b/httemplate/view/svc_acct.cgi index 19953bafd..dd242b980 100755 --- a/httemplate/view/svc_acct.cgi +++ b/httemplate/view/svc_acct.cgi @@ -2,7 +2,6 @@ <% my $conf = new FS::Conf; -my $mydomain = $conf->config('domain'); my($query) = $cgi->keywords; $query =~ /^(\d+)$/; @@ -32,11 +31,7 @@ if ( $svc_acct->domsvc ) { die "Unknown domain" unless $svc_domain; $domain = $svc_domain->domain; } else { - unless ( $mydomain ) { - die "No legacy domain config file and no svc_domain.svcnum record ". - "for svc_acct.domsvc: ". $cust_svc->domsvc; - } - $domain = $mydomain; + die "No svc_domain.svcnum record for svc_acct.domsvc: ". $cust_svc->domsvc; } %> @@ -149,8 +144,28 @@ if ($svc_acct->slipip) { print 'RADIUS groups'. join('
', $svc_acct->radius_groups). ''; -print "". - '
'. joblisting({'svcnum'=>$svcnum}, 1). - ""; +print '

'; + +#if ( $cust_pkg && $cust_pkg->part_pkg->plan eq 'sqlradacct_hour' ) { +if ( $cust_pkg && $part_svc->part_export('sqlradius') ) { + + 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). ') - '. + $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). ''; %>