diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-01-26 20:20:29 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-01-26 20:20:29 -0800 |
commit | bbb261f0dc3efe26abb71c4b17fd3386b82e8d8c (patch) | |
tree | 34a6112207c2d025bfe2f6e681f47375bdcc07ab | |
parent | ffb9519f06c7f6fc3d5c333d69993aed7fedea69 (diff) |
don't unnecessarily fail voiding
-rw-r--r-- | FS/FS/cust_pay_void.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_pay_void.pm b/FS/FS/cust_pay_void.pm index 72ada2534..8d37a58b5 100644 --- a/FS/FS/cust_pay_void.pm +++ b/FS/FS/cust_pay_void.pm @@ -190,7 +190,7 @@ sub check { || $self->ut_foreign_keyn('pkgnum', 'cust_pkg', 'pkgnum') || $self->ut_numbern('void_date') || $self->ut_textn('reason') - || $self->payinfo_check + # || $self->payinfo_check #we'd rather void what we have than fail on this || $self->ut_foreign_keyn('reasonnum', 'reason', 'reasonnum') ; return $error if $error; |