diff options
| author | Mark Wells <mark@freeside.biz> | 2013-02-08 14:19:31 -0800 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2013-02-08 14:19:31 -0800 |
| commit | 1951a5f6de2a3a5b6964c0016455dc438cd1b53c (patch) | |
| tree | a7a17b9d177728019a874d6a3427190b132287de | |
| parent | b1a9256d101cc8e0e69239e84b3049c66600cc00 (diff) | |
fix paymentech return processing when it's the default payment gateway, #21358, #21117
| -rw-r--r-- | FS/FS/pay_batch/paymentech.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/FS/FS/pay_batch/paymentech.pm b/FS/FS/pay_batch/paymentech.pm index 970550378..3021bb60f 100644 --- a/FS/FS/pay_batch/paymentech.pm +++ b/FS/FS/pay_batch/paymentech.pm @@ -60,8 +60,12 @@ my $gateway; $hash->{'_date'} =~ /^(..)(..)(....)(..)(..)(..)$/; $hash->{'_date'} = timelocal($sec, $min, $hour, $day, $mon-1, $year); $hash->{'paid'} = $oldhash->{'amount'}; + + my $gateway_label = $hash->{'processor'}; + $gateway_label = $hash->{'gatewaynum'} . '-' . $gateway_label + if $hash->{'gatewaynum'}; $hash->{'paybatch'} = join(':', - $gateway->gatewaynum . '-PaymenTech', + $gateway_label, $hash->{'auth'}, $hash->{'order_number'}, ); |
