Transaction Id on repayment

This commit is contained in:
2025-04-15 17:16:30 -04:00
parent a2399a2eae
commit 9df8e31fdd
2 changed files with 7 additions and 3 deletions
+4 -2
View File
@@ -33,7 +33,8 @@ class RepaymentService(BaseService):
loan_id = validated_data.get('debtId')
product_id = validated_data.get('productId')
account_id = validated_data.get('accountId')
customer = Customer.get_customer(customer_id)
customer = Customer.get_customer(customer_id)
transaction_id = validated_data.get('transactionId')
if(RepaymentService.validate_account_ownership(account_id = account_id, customer_id = customer_id)):
@@ -41,7 +42,8 @@ class RepaymentService(BaseService):
repayment = Repayment.create_repayment(
customer_id = customer_id,
loan_id = loan_id,
product_id = product_id
product_id = product_id,
transaction_id=transaction_id
)