From cf25863afe9bfcad877f0e6bee044377d19947f2 Mon Sep 17 00:00:00 2001 From: i701 Date: Fri, 4 Jul 2025 22:52:13 +0500 Subject: [PATCH] =?UTF-8?q?fix(billing):=20remove=20+5=20minutes=20for=20p?= =?UTF-8?q?ayment=20verification=20payload=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- billing/views.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/billing/views.py b/billing/views.py index be9f7a7..435ed68 100644 --- a/billing/views.py +++ b/billing/views.py @@ -383,9 +383,7 @@ class VerifyTopupPaymentAPIView(StaffEditorPermissionMixin, generics.UpdateAPIVi "benefName": f"{user.first_name} {user.last_name}", # type: ignore "accountNo": user.acc_no, # type: ignore "absAmount": topup_instance.amount, - "time": localtime( - topup_instance.created_at + timedelta(minutes=5) - ).strftime("%Y-%m-%d %H:%M"), + "time": localtime(topup_instance.created_at).strftime("%Y-%m-%d %H:%M"), } logger.info( f"Verifying topup payment created at {topup_instance.created_at} with data: {data}"