From f13d9e6ba1b4fb4fbfb9f9af2b2738dbe1cad078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Nozi=C3=A8re?= <118798868+anoziere@users.noreply.github.com> Date: Wed, 1 Oct 2025 16:03:06 +0200 Subject: [PATCH 1/2] Add HttpFoundation Response import to PayPlugModule --- PayPlugModule.php | 1 + 1 file changed, 1 insertion(+) diff --git a/PayPlugModule.php b/PayPlugModule.php index 692c2e7..6b95a11 100755 --- a/PayPlugModule.php +++ b/PayPlugModule.php @@ -18,6 +18,7 @@ use Propel\Runtime\Connection\ConnectionInterface; use Symfony\Component\DependencyInjection\Loader\Configurator\ServicesConfigurator; use Symfony\Component\Finder\Finder; +use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\RedirectResponse; use Thelia\Core\HttpFoundation\JsonResponse; use Thelia\Core\Template\TemplateDefinition; From 4b229534064c12e9e4b3199cf00cf6e8a55cce0a Mon Sep 17 00:00:00 2001 From: Nicolas Barbey Date: Mon, 27 Oct 2025 16:21:18 +0100 Subject: [PATCH 2/2] fix bug with payplug oney module --- Config/module.xml | 2 +- EventListener/NotificationListener.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Config/module.xml b/Config/module.xml index 32b2450..84c11f7 100755 --- a/Config/module.xml +++ b/Config/module.xml @@ -17,7 +17,7 @@ en_US fr_FR - 2.1.2 + 2.1.3 Vincent Lopes-Vicente diff --git a/EventListener/NotificationListener.php b/EventListener/NotificationListener.php index 3512af8..576658b 100755 --- a/EventListener/NotificationListener.php +++ b/EventListener/NotificationListener.php @@ -65,6 +65,7 @@ public function handlePaymentNotification(PaymentNotificationEvent $event) } $order = OrderQuery::create() + ->filterByPaymentModuleId(PayPlugModule::getModuleId()) ->filterByTransactionRef($transactionRef) ->findOne();