From 741b6bf4e2532238860bc5f968bd24c6698d5c5f Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Sun, 17 Feb 2013 15:51:31 -0800 Subject: [PATCH] don't even send an empty avsCountryCode for non-US/CA/GB/UK country, RT#21415 --- FS/FS/pay_batch/paymentech.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/FS/FS/pay_batch/paymentech.pm b/FS/FS/pay_batch/paymentech.pm index 3021bb60f..594c89543 100644 --- a/FS/FS/pay_batch/paymentech.pm +++ b/FS/FS/pay_batch/paymentech.pm @@ -139,10 +139,10 @@ my %paymentech_countries = map { $_ => 1 } qw( US CA GB UK ); avsCity => substr($_->city, 0, 20), avsState => substr($_->state, 0, 2), avsName => substr($_->first. ' '. $_->last, 0, 30), - avsCountryCode => ( $paymentech_countries{ $_->country } - ? $_->country - : '' - ), + ( $paymentech_countries{ $_->country } + ? ( avsCountryCode => $_->country ) + : () + ), orderID => $_->paybatchnum, amount => $_->amount * 100, ); -- 2.11.0