eboutic: add some help and documentation for the payment system

This commit is contained in:
Antoine Bartuccio 2019-05-27 11:20:57 +02:00
parent c219e47621
commit 8129e6923a
Signed by: klmp200
GPG Key ID: E7245548C53F904B
1 changed files with 3 additions and 1 deletions

View File

@ -239,11 +239,13 @@ class EbouticPayWithSith(TemplateView):
class EtransactionAutoAnswer(View): 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): def get(self, request, *args, **kwargs):
if ( if (
not "Amount" in request.GET.keys() not "Amount" in request.GET.keys()
or not "BasketID" 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 "Error" in request.GET.keys()
or not "Sig" in request.GET.keys() or not "Sig" in request.GET.keys()
): ):