Skip to content

Commit

Permalink
fix: loan refund gl entry
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihantra-Patel committed Oct 22, 2024
1 parent 62b0dfc commit 40da42c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lending/loan_management/doctype/loan_refund/loan_refund.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ def make_gl_entries(self, cancel=0):
"remarks": _("Against Loan:") + self.loan,
"cost_center": self.cost_center,
"posting_date": getdate(self.posting_date),
"party_type": loan_details.applicant_type,
"party": loan_details.applicant,
"party_type": self.applicant_type,
"party": self.applicant,
}
)
)
Expand Down

0 comments on commit 40da42c

Please sign in to comment.