This commit is contained in:
CHIEFSOFT\ameye
2025-05-29 15:19:29 -04:00
parent f716b47603
commit 9ea0027f71
+3 -1
View File
@@ -48,12 +48,14 @@ class BaseService:
"""
Create a new transaction.
"""
channel = "USSD" if validated_data.get("channel") is None else validated_data.get("channel")
return Transaction.create_transaction(
transaction_id = validated_data.get("transactionId"),
customer_id = validated_data.get('customerId', None),
account_id = validated_data.get("accountId", None),
type = cls.TRANSACTION_TYPE,
channel = validated_data.get("channel"),
channel = channel,
)
@classmethod