summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--FS/FS/pay_batch/paymentech.pm6
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'},
);