From 118ad52c71c5168832fcd68d6d81abd618cf0162 Mon Sep 17 00:00:00 2001 From: i701 Date: Fri, 25 Jul 2025 16:02:01 +0500 Subject: [PATCH] =?UTF-8?q?feat(wallet):=20add=20transaction=5Ftype=20fiel?= =?UTF-8?q?d=20to=20WalletTransactionFilter=20for=20enhanced=20filtering?= =?UTF-8?q?=20options=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- billing/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/billing/filters.py b/billing/filters.py index 8a4c274..9aefe8b 100644 --- a/billing/filters.py +++ b/billing/filters.py @@ -107,4 +107,4 @@ class WalletTransactionFilter(django_filters.FilterSet): class Meta: model = WalletTransaction - fields = ["user", "amount", "created_at"] + fields = ["user", "amount", "created_at", "transaction_type"]