summaryrefslogtreecommitdiff
path: root/FS/FS/cust_main/Billing_Batch.pm
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-05-18 11:58:26 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-05-18 11:58:26 -0400
commit386c1c45a7cb9e8ad93862d9aa2d59cdb4ed0d3a (patch)
treeb994f7a4938b146b26991b6e5b18d7eb62a5c813 /FS/FS/cust_main/Billing_Batch.pm
parenta8d055471f77f59883f921d9eeda056a2e7ad279 (diff)
RT# 74435 - Adding option to allow refunds using electronic check batch with RBC format.
Diffstat (limited to 'FS/FS/cust_main/Billing_Batch.pm')
-rw-r--r--FS/FS/cust_main/Billing_Batch.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_main/Billing_Batch.pm b/FS/FS/cust_main/Billing_Batch.pm
index d8e6f8a..d8ae3b4 100644
--- a/FS/FS/cust_main/Billing_Batch.pm
+++ b/FS/FS/cust_main/Billing_Batch.pm
@@ -114,7 +114,7 @@ sub batch_card {
} );
foreach (qw( address1 address2 city state zip country latitude longitude
- payby payinfo paydate payname ))
+ payby payinfo paydate payname paycode ))
{
$options{$_} = '' unless exists($options{$_});
}
@@ -142,6 +142,7 @@ sub batch_card {
'payname' => $options{payname} || $cust_payby->payname,
'paytype' => $options{paytype} || $cust_payby->paytype,
'amount' => $amount, # consolidating
+ 'paycode' => $options{paycode} || $cust_payby->paycode,
} );
$cust_pay_batch->paybatchnum($old_cust_pay_batch->paybatchnum)