diff --git a/app/integrations/simbrella.py b/app/integrations/simbrella.py index cdf3206..ccb7620 100644 --- a/app/integrations/simbrella.py +++ b/app/integrations/simbrella.py @@ -103,7 +103,7 @@ class SimbrellaClient: "accountId": loan_data.get('accountId'), "productId": str(loan_data.get('productId', "")), "provideAmount": loan_data.get('currentLoanAmount'), - "collectAmountInterest": interest_fee if product_id != '3MPC' else 0, + "collectAmountInterest": interest_fee if product_id != '3MPC' else 0, #send charges for only 1 month loan "collectAmountMgtFee": mgt_fee if product_id != '3MPC' else 0, "collectAmountInsurance": insurance_fee if product_id != '3MPC' else 0, "collectAmountVAT": vat_fee if product_id != '3MPC' else 0,