summaryrefslogtreecommitdiff
path: root/FS/FS/cust_pay_batch.pm
diff options
context:
space:
mode:
authormark <mark>2011-07-22 19:07:43 +0000
committermark <mark>2011-07-22 19:07:43 +0000
commitdb4d8679af26c301cb66f3f3da7f7cd7a3ae4854 (patch)
tree77806e63e63f18fe099b255aab12edd0feb69f41 /FS/FS/cust_pay_batch.pm
parentc405e80203f323a83b447d6fc899dbba32d52f2a (diff)
EFT Canada batch format and scripts, #13628
Diffstat (limited to 'FS/FS/cust_pay_batch.pm')
-rw-r--r--FS/FS/cust_pay_batch.pm18
1 files changed, 12 insertions, 6 deletions
diff --git a/FS/FS/cust_pay_batch.pm b/FS/FS/cust_pay_batch.pm
index 171ec9f..f5e6a4b 100644
--- a/FS/FS/cust_pay_batch.pm
+++ b/FS/FS/cust_pay_batch.pm
@@ -300,26 +300,32 @@ sub approve {
return;
}
-=item decline
+=item decline [ REASON ]
Decline this payment. This will replace the existing record with the
same paybatchnum, set its status to 'Declined', and run collection events
as appropriate. This should only be called from the batch import process.
+REASON is a string description of the decline reason, defaulting to
+'Returned payment'.
+
=cut
sub decline {
my $new = shift;
- my $conf = new FS::Conf;
+ my $reason = shift || 'Returned payment';
+ #my $conf = new FS::Conf;
my $paybatchnum = $new->paybatchnum;
my $old = qsearchs('cust_pay_batch', { paybatchnum => $paybatchnum })
or return "paybatchnum $paybatchnum not found";
if ( $old->status ) {
# Handle the case where payments are rejected after the batch has been
- # approved. Only if manual approval is enabled.
- if ( $conf->exists('batch-manual_approval')
- and lc($old->status) eq 'approved' ) {
+ # approved. FS::pay_batch::import_results won't allow results to be
+ # imported to a closed batch unless batch-manual_approval is enabled,
+ # so we don't check it here.
+# if ( $conf->exists('batch-manual_approval') and
+ if ( lc($old->status) eq 'approved' ) {
# Void the payment
my $cust_pay = qsearchs('cust_pay', {
custnum => $new->custnum,
@@ -329,7 +335,7 @@ sub decline {
# should never happen...
return "failed to revoke paybatchnum $paybatchnum, payment not found";
}
- $cust_pay->void('Returned payment');
+ $cust_pay->void($reason);
}
else {
# normal case: refuse to do anything