X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fsvc_acct.cgi;h=599c1d8b9610d1e12b00bfe84341d3ed63dbe811;hb=4454c0bae42714d3dc215572a15a0ad0960b20fe;hp=e00562ace4e64ff42a41cf81df3452c25e4a99d0;hpb=4ff72381c99c7508f6028d2c44a2ec5c455e4670;p=freeside.git diff --git a/httemplate/view/svc_acct.cgi b/httemplate/view/svc_acct.cgi index e00562ace..599c1d8b9 100755 --- a/httemplate/view/svc_acct.cgi +++ b/httemplate/view/svc_acct.cgi @@ -92,7 +92,7 @@ if ( $part_svc->part_export('sqlradius') ) { } if ( $cust_pkg ) { - print ' this billing cycle (since '. time2str("%C", $last_bill). ') - '. + print ' since last bill ('. time2str("%C", $last_bill). ') - '. $plandata{recur_included_hours}. ' total hours in plan
'; } else { print ' (no billing cycle available for unaudited account)
'; @@ -140,7 +140,9 @@ if ( $conf->exists('security_phrase') ) { $svc_acct->sec_phrase. ''; } -my $svc_acct_pop = qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum}); +my $svc_acct_pop = $svc_acct->popnum + ? qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum}) + : ''; print "Access number". "". $svc_acct_pop->text. '' if $svc_acct_pop;