make epay callback code handle multiple callbacks for the same order (happens sometimes)
This commit is contained in:
parent
9ff4be7272
commit
f5e05ac51c
|
@ -307,9 +307,13 @@ class EpayCallbackView(View):
|
||||||
print "bad epay callback!"
|
print "bad epay callback!"
|
||||||
return HttpResponse(status=400)
|
return HttpResponse(status=400)
|
||||||
|
|
||||||
### epay callback is valid - if the order been paid in full,
|
if order.paid:
|
||||||
### create an EpayPayment object linking the callback to the order
|
### this order is already paid, perhaps we are seeing a double callback?
|
||||||
|
return HttpResponse('OK')
|
||||||
|
|
||||||
|
### epay callback is valid - has the order been paid in full?
|
||||||
if int(query['amount']) == order.total * 100:
|
if int(query['amount']) == order.total * 100:
|
||||||
|
### create an EpayPayment object linking the callback to the order
|
||||||
EpayPayment.objects.create(
|
EpayPayment.objects.create(
|
||||||
order=order,
|
order=order,
|
||||||
callback=callback,
|
callback=callback,
|
||||||
|
|
Loading…
Reference in a new issue