Projet

Général

Profil

0001-payfip_ws-consider-cancelled-transaction-as-still-wa.patch

Benjamin Dauvergne, 08 novembre 2022 18:39

Télécharger (827 octets)

Voir les différences:

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(-)
eopayment/payfip_ws.py
353 353
            result = DENIED
354 354
            bank_status = 'refused direct debit'
355 355
        elif response.resultrans == 'A':
356
            result = CANCELLED
356
            result = WAITING
357 357
            bank_status = 'cancelled CB'
358 358
        else:
359 359
            result = ERROR
360
-