From 3d2aedeac4deec1bcb5a0f41dc2992d7a749f853 Mon Sep 17 00:00:00 2001 From: kevinverschoor <61683999+kevinverschoor@users.noreply.github.com> Date: Tue, 30 Apr 2024 13:27:20 +0200 Subject: [PATCH] PLUG-3402 - Fix sandbox not showing company name --- upload/Pay/Controller/Payment.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/upload/Pay/Controller/Payment.php b/upload/Pay/Controller/Payment.php index 6438414..6a3b95b 100755 --- a/upload/Pay/Controller/Payment.php +++ b/upload/Pay/Controller/Payment.php @@ -163,7 +163,8 @@ public function startTransaction() 'company' => array( 'name' => $order_info['payment_company'], 'cocNumber' => (!empty($_POST['coc'])) ? $_POST['coc'] : null, - 'vatNumber' => (!empty($_POST['vat'])) ? $_POST['vat'] : null + 'vatNumber' => (!empty($_POST['vat'])) ? $_POST['vat'] : null, + 'countryCode' => $order_info['payment_iso_code_2'], ), 'dob' => !empty($dob) ? str_replace("/", "-", $dob) : null, );