From e5b14d04e5082cccfb058e814ce6b26b3614275c Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 8 Nov 2022 18:39:22 +0100 Subject: [PATCH] payfip_ws: consider cancelled transaction as still waiting for a resolution (#71155) --- eopayment/payfip_ws.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eopayment/payfip_ws.py b/eopayment/payfip_ws.py index 751cd88..5413a9d 100644 --- a/eopayment/payfip_ws.py +++ b/eopayment/payfip_ws.py @@ -353,7 +353,7 @@ class Payment(PaymentCommon): result = DENIED bank_status = 'refused direct debit' elif response.resultrans == 'A': - result = CANCELLED + result = WAITING bank_status = 'cancelled CB' else: result = ERROR -- 2.37.2