Skip to content

Commit

Permalink
Merge pull request #209 from Nihantra-Patel/fix_loan_refund_gl_entry
Browse files Browse the repository at this point in the history
fix: loan refund gl entry
  • Loading branch information
deepeshgarg007 authored Oct 23, 2024
2 parents 561d5fc + 40da42c commit 3c140fd
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 3c140fd

Please sign in to comment.