diff --git a/billing/views.py b/billing/views.py index 7403e60..1b4f04f 100644 --- a/billing/views.py +++ b/billing/views.py @@ -223,6 +223,10 @@ class VerifyPaymentView(StaffEditorPermissionMixin, generics.UpdateAPIView): if not response.json().get("success"): return mib_resp["success"] else: + payment.paid = True + payment.paid_at = timezone.now() + payment.method = "TRANSFER" + payment.save() return True