diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-05-05 17:26:06 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-05-05 19:10:25 -0500 |
commit | dca12af272e0061810d14e611afa07adb58389ef (patch) | |
tree | 54c286e7da8e132f004cfe38c3536cefdf16d76a /FS | |
parent | d961044f3be505585f651dd13873f3d977cfcf9b (diff) |
RT#42373: Add ACH support to B::OP::ElavonVirtualMerchant [passing company from Billing_Realtime]
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main/Billing_Realtime.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm index 6c0b655a2..2a9e86924 100644 --- a/FS/FS/cust_main/Billing_Realtime.pm +++ b/FS/FS/cust_main/Billing_Realtime.pm @@ -522,6 +522,8 @@ sub realtime_bop { ? uc($options{'paytype'}) : uc($self->getfield('paytype')) || 'PERSONAL CHECKING'; + $content{company} = $self->company if $self->company; + if ( $content{account_type} =~ /BUSINESS/i && $self->company ) { $content{account_name} = $self->company; } else { |