pass additional fields to ACH processors (Authorize.Net should work now)
authorivan <ivan>
Mon, 30 Jun 2003 18:56:05 +0000 (18:56 +0000)
committerivan <ivan>
Mon, 30 Jun 2003 18:56:05 +0000 (18:56 +0000)
FS/FS/cust_main.pm

index b455400..ea6f032 100644 (file)
@@ -1556,6 +1556,10 @@ sub realtime_bop {
     ( $content{account_number}, $content{routing_code} ) =
       split('@', $self->payinfo);
     $content{bank_name} = $self->payname;
+    $content{account_type} = 'CHECKING';
+    $content{account_name} = $payname;
+    $content{customer_org} = $self->company ? 'B' : 'I';
+    $content{customer_ssn} = $self->ss;
   } elsif ( $method eq 'LEC' ) {
     $content{phone} = $self->payinfo;
   }