Skip to content

Commit

Permalink
Merge pull request #36 from paynl/feature/PLUG-3402
Browse files Browse the repository at this point in the history
PLUG-3402 - Fix sandbox not showing company name
  • Loading branch information
woutse authored May 1, 2024
2 parents 1f75b60 + 3d2aede commit 311cad3
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 311cad3

Please sign in to comment.