fix: allow to cancel loan with cancelled replayment entry

This commit is contained in:
Afshan 2021-04-28 20:21:04 +05:30
parent 3b1ae4eb90
commit ab052599c0

View File

@ -44,6 +44,7 @@ class Loan(AccountsController):
def on_cancel(self):
self.unlink_loan_security_pledge()
self.ignore_linked_doctypes = ['GL Entry']
def set_missing_fields(self):
if not self.company:
@ -359,4 +360,4 @@ def get_shortfall_applicants():
return {
"value": len(applicants),
"fieldtype": "Int"
}
}