diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-10-05 21:52:43 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-10-09 23:46:05 -0500 |
commit | a5a3bd7c762a49add6bcb2cd10c44d9c26a8df88 (patch) | |
tree | a58a1219d12967c891d0ff32610189c28941a345 | |
parent | 5e6b981ccafac97a17d64924ef770c471ca28ab0 (diff) |
RT37465: RBC PAD error when calculating totals [W status is now approved]
-rw-r--r-- | FS/FS/pay_batch/RBC.pm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/FS/FS/pay_batch/RBC.pm b/FS/FS/pay_batch/RBC.pm index 644c73c8b..b0136786b 100644 --- a/FS/FS/pay_batch/RBC.pm +++ b/FS/FS/pay_batch/RBC.pm @@ -66,7 +66,7 @@ $name = 'RBC'; }, 'approved' => sub { my $hash = shift; - $hash->{'status'} eq ' ' + ($hash->{'status'} eq ' ') || ($hash->{'status'} eq 'W'); }, 'declined' => sub { my $hash = shift; @@ -127,12 +127,6 @@ $name = 'RBC'; if $hash->{'status'} eq ' '; #false laziness with 'approved' above return 1; } - #skipping W for now (maybe it should be declined?) - if ($hash->{'status'} eq 'W') { - #file counts this as part of total, but we skip - $totaloffset += sprintf("%.2f", $hash->{'paid'} / 100 ); - return 1; - } return ($hash->{'recordtype'} eq '3') || #Account Trailer Record, concludes returned items ($hash->{'subtype'} ne '0'); #error messages, etc, too late to apply to previous entry |