fix: process loan interest accrual
This commit is contained in:
parent
b85dbdc3c1
commit
9ef8d5c5c3
@ -135,7 +135,11 @@ def calculate_accrual_amount_for_demand_loans(
|
|||||||
def make_accrual_interest_entry_for_demand_loans(
|
def make_accrual_interest_entry_for_demand_loans(
|
||||||
posting_date, process_loan_interest, open_loans=None, loan_type=None, accrual_type="Regular"
|
posting_date, process_loan_interest, open_loans=None, loan_type=None, accrual_type="Regular"
|
||||||
):
|
):
|
||||||
query_filters = {"status": ("in", ["Disbursed", "Partially Disbursed"]), "docstatus": 1}
|
query_filters = {
|
||||||
|
"status": ("in", ["Disbursed", "Partially Disbursed"]),
|
||||||
|
"docstatus": 1,
|
||||||
|
"is_term_loan": 0,
|
||||||
|
}
|
||||||
|
|
||||||
if loan_type:
|
if loan_type:
|
||||||
query_filters.update({"loan_type": loan_type})
|
query_filters.update({"loan_type": loan_type})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user