Skip to content

Commit

Permalink
PLUG-3402 - Fix sandbox not showing company name
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinverschoor committed Apr 30, 2024
1 parent 1f75b60 commit 3d2aede
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion upload/Pay/Controller/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
Expand Down

0 comments on commit 3d2aede

Please sign in to comment.