From: Ivan Kohler Date: Sun, 28 Feb 2016 07:11:36 +0000 (-0800) Subject: still allow void of ancient invoices from unusual circumstances X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=f3bd5f3e5da4f3d65ac3c4ae57df309921177cf1 still allow void of ancient invoices from unusual circumstances --- diff --git a/FS/FS/cust_bill_pay.pm b/FS/FS/cust_bill_pay.pm index 25bd61977..23f881408 100644 --- a/FS/FS/cust_bill_pay.pm +++ b/FS/FS/cust_bill_pay.pm @@ -83,9 +83,9 @@ Deletes this payment application, unless the closed flag for the parent payment sub delete { my $self = shift; return "Can't delete application for closed payment" - if $self->cust_pay->closed =~ /^Y/i; + if $self->cust_pay && $self->cust_pay->closed =~ /^Y/i; return "Can't delete application for closed invoice" - if $self->cust_bill->closed =~ /^Y/i; + if $self->cust_bill && $self->cust_bill->closed =~ /^Y/i; $self->SUPER::delete(@_); }