From 8129e6923ad6decebf58622090e146ff5b942aeb Mon Sep 17 00:00:00 2001 From: Bartuccio Antoine Date: Mon, 27 May 2019 11:20:57 +0200 Subject: [PATCH] eboutic: add some help and documentation for the payment system --- eboutic/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eboutic/views.py b/eboutic/views.py index 5df9c8d4..afd68320 100644 --- a/eboutic/views.py +++ b/eboutic/views.py @@ -239,11 +239,13 @@ class EbouticPayWithSith(TemplateView): class EtransactionAutoAnswer(View): + # Response documentation http://www1.paybox.com/espace-integrateur-documentation/la-solution-paybox-system/gestion-de-la-reponse/ def get(self, request, *args, **kwargs): if ( not "Amount" in request.GET.keys() or not "BasketID" in request.GET.keys() - or not "Auto" in request.GET.keys() + or not "Auto" + in request.GET.keys() # If not in the request it means the payment has been refused or not "Error" in request.GET.keys() or not "Sig" in request.GET.keys() ):