From 303ffc4d2075bb3704a6c21292868fe8a2014a87 Mon Sep 17 00:00:00 2001 From: kevinverschoor <61683999+kevinverschoor@users.noreply.github.com> Date: Wed, 22 Nov 2023 11:43:55 +0100 Subject: [PATCH 1/3] PLUG-2934 - Company details --- paynl_paymentmethods/controllers/front/payment.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/paynl_paymentmethods/controllers/front/payment.php b/paynl_paymentmethods/controllers/front/payment.php index c5bed05..e444243 100644 --- a/paynl_paymentmethods/controllers/front/payment.php +++ b/paynl_paymentmethods/controllers/front/payment.php @@ -159,6 +159,10 @@ public function initContent() $arrEnduser['invoiceAddress'] = $arrAddress; + $arrEnduser['company']['name'] = $invoiceAddress->company; + $arrEnduser['company']['countryCode'] = $country->iso_code; + $arrEnduser['company']['vatNumber'] = $invoiceAddress->vat_number; + $apiStart->setEnduser($arrEnduser); From 700e01c78fb3c562462404ce37a99e1678d9aa8c Mon Sep 17 00:00:00 2001 From: woutse Date: Tue, 28 Nov 2023 13:33:37 +0100 Subject: [PATCH 2/3] Bumped version --- paynl_paymentmethods/paynl_paymentmethods.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paynl_paymentmethods/paynl_paymentmethods.php b/paynl_paymentmethods/paynl_paymentmethods.php index 1836d17..dd526c7 100644 --- a/paynl_paymentmethods/paynl_paymentmethods.php +++ b/paynl_paymentmethods/paynl_paymentmethods.php @@ -13,7 +13,7 @@ public function __construct() { $this->name = 'paynl_paymentmethods'; $this->tab = 'payments_gateways'; - $this->version = '3.6.0'; + $this->version = '3.6.1'; $this->_postErrors = array(); $this->module_key = '6c2f48f238008e8f68271f5e4763d308'; From 3852ab5f430dd9594d346dfb3abf3b6b73d3f2ed Mon Sep 17 00:00:00 2001 From: woutse Date: Tue, 28 Nov 2023 13:35:00 +0100 Subject: [PATCH 3/3] Bumped version --- paynl_paymentmethods/paynl_paymentmethods.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paynl_paymentmethods/paynl_paymentmethods.php b/paynl_paymentmethods/paynl_paymentmethods.php index dd526c7..cb7f87c 100644 --- a/paynl_paymentmethods/paynl_paymentmethods.php +++ b/paynl_paymentmethods/paynl_paymentmethods.php @@ -13,7 +13,7 @@ public function __construct() { $this->name = 'paynl_paymentmethods'; $this->tab = 'payments_gateways'; - $this->version = '3.6.1'; + $this->version = '3.6.2'; $this->_postErrors = array(); $this->module_key = '6c2f48f238008e8f68271f5e4763d308';