fix: on cancel for loan refund
diff --git a/erpnext/loan_management/doctype/loan_refund/loan_refund.py b/erpnext/loan_management/doctype/loan_refund/loan_refund.py
index 766cdb6..903494c 100644
--- a/erpnext/loan_management/doctype/loan_refund/loan_refund.py
+++ b/erpnext/loan_management/doctype/loan_refund/loan_refund.py
@@ -3,7 +3,7 @@
 
 import frappe
 from frappe import _
-from frappe.model.document import Document
+from erpnext.controllers.accounts_controller import AccountsController
 from frappe.utils import cint, getdate
 
 import erpnext
@@ -13,7 +13,7 @@
 )
 
 
-class LoanRefund(Document):
+class LoanRefund(AccountsController):
 	"""
 	Add refund if total repayment is more than that is owed.
 	"""
@@ -50,7 +50,7 @@
 
 	def on_cancel(self):
 		self.update_outstanding_amount(cancel=1)
-		self.ignore_linked_doctypes = ["GL Entry"]
+		self.ignore_linked_doctypes = ["GL Entry", "Payment Ledger Entry"]
 		self.make_gl_entries(cancel=1)
 
 	def update_outstanding_amount(self, cancel=0):