From: Mark Wells Date: Tue, 21 Jan 2014 22:06:03 +0000 (-0800) Subject: fix adding new one-time charges, from #26282 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=339f0d29184395a0342c4f3a3febba79cd76fb11;p=freeside.git fix adding new one-time charges, from #26282 --- diff --git a/httemplate/edit/quick-charge.html b/httemplate/edit/quick-charge.html index 7b88bcce9..e141e7d22 100644 --- a/httemplate/edit/quick-charge.html +++ b/httemplate/edit/quick-charge.html @@ -459,6 +459,6 @@ if ( $cust_pkg ) { # set defaults } } -my $billed = $cust_pkg->get('setup') ? 1 : 0; +my $billed = ($cust_pkg and $cust_pkg->get('setup')) ? 1 : 0;