diff options
author | Mark Wells <mark@freeside.biz> | 2016-12-22 15:46:34 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-12-22 15:46:42 -0800 |
commit | 3c417a8013efc44e77f93288685177868e70555a (patch) | |
tree | da08c03ef468590b70bd8b61e5d691e4a9f56d72 | |
parent | 399013698f9ba6ff2c9861a839f424da9609825e (diff) |
include with_recurringInd in paymentech config migration, #19571
-rw-r--r-- | FS/FS/pay_batch/paymentech.pm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/FS/FS/pay_batch/paymentech.pm b/FS/FS/pay_batch/paymentech.pm index 91abbf273..65fb668b7 100644 --- a/FS/FS/pay_batch/paymentech.pm +++ b/FS/FS/pay_batch/paymentech.pm @@ -175,7 +175,14 @@ sub _upgrade_gateway { my $conf = FS::Conf->new; my @batchconfig = $conf->config('batchconfig-paymentech'); my %options; - @options{ qw(bin terminalID merchantID login password ) } = @batchconfig; + @options{ qw( + bin + terminalID + merchantID + login + password + with_recurringInd + ) } = @batchconfig; $options{'industryType'} = 'EC'; ( 'Paymentech', %options ); } |