[freeside-commits] branch FREESIDE_4_BRANCH updated. 57ecc58afc271d95a365419a7ffeec32c2c3b9b7
Ivan
ivan at 420.am
Sat Feb 27 23:11:38 PST 2016
The branch, FREESIDE_4_BRANCH has been updated
via 57ecc58afc271d95a365419a7ffeec32c2c3b9b7 (commit)
from d682f657ca607bbae37ad4d0a3fc19190abd37c4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 57ecc58afc271d95a365419a7ffeec32c2c3b9b7
Author: Ivan Kohler <ivan at freeside.biz>
Date: Sat Feb 27 23:11:37 2016 -0800
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 25bd619..23f8814 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(@_);
}
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cust_bill_pay.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list