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:47:07 -0800 |
commit | 01330d19ff01083ab26c6bae8ab13fb96ab78af9 (patch) | |
tree | da4f6c6db66a73b901afdb89cc3dcc2f37badff5 | |
parent | b71fde6bf49b090dafcdd3b1c275aff31044d0a4 (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 12825074a..3cf3134ff 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 ); } |