diff options
author | Mark Wells <mark@freeside.biz> | 2016-12-16 11:57:52 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-12-16 11:57:52 -0800 |
commit | 05c1252f0d61a242cf53a29063a7c9d13b644eed (patch) | |
tree | 23ff53d00e0a64cfae9ec08ddcfd21a849422d06 | |
parent | 20bd8dedc6e03c63fdd6e8e0ef884d72c427e40e (diff) |
prevent B:BP batches from being marked in-transit if uploading the batch fails, #71837
-rw-r--r-- | FS/FS/pay_batch.pm | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/FS/FS/pay_batch.pm b/FS/FS/pay_batch.pm index 528b0d597..1c0a28ab6 100644 --- a/FS/FS/pay_batch.pm +++ b/FS/FS/pay_batch.pm @@ -14,6 +14,7 @@ use Scalar::Util 'blessed'; use IO::Scalar; use FS::Misc qw(send_email); # for error notification use List::Util qw(sum); +use Try::Tiny; @ISA = qw(FS::Record); @@ -1080,16 +1081,21 @@ sub export_to_gateway { my $processor = $gateway->batch_processor(%proc_opt); my @items = map { $_->request_item } $self->cust_pay_batch; - my $batch = Business::BatchPayment->create(Batch => - batch_id => $self->batchnum, - items => \@items - ); - $processor->submit($batch); + try { + my $batch = Business::BatchPayment->create(Batch => + batch_id => $self->batchnum, + items => \@items + ); + $processor->submit($batch); - if ($batch->processor_id) { - $self->set('processor_id',$batch->processor_id); - $self->replace; - } + if ($batch->processor_id) { + $self->set('processor_id',$batch->processor_id); + $self->replace; + } + } catch { + $dbh->rollback if $oldAutoCommit; + die $_; + }; $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; |