RT37465: RBC PAD error when calculating totals [W status is now approved]
authorJonathan Prykop <jonathan@freeside.biz>
Tue, 6 Oct 2015 02:52:43 +0000 (21:52 -0500)
committerJonathan Prykop <jonathan@freeside.biz>
Sat, 10 Oct 2015 04:46:05 +0000 (23:46 -0500)
FS/FS/pay_batch/RBC.pm

index 644c73c..b013678 100644 (file)
@@ -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