[fix] check dynamic links before cancel
This commit is contained in:
parent
8c97be9e2e
commit
78b390eb47
1 changed files with 2 additions and 1 deletions
|
|
@ -578,9 +578,10 @@ class Document(BaseDocument):
|
|||
|
||||
def check_no_back_links_exist(self):
|
||||
"""Check if document links to any active document before Cancel."""
|
||||
from frappe.model.delete_doc import check_if_doc_is_linked
|
||||
from frappe.model.delete_doc import check_if_doc_is_linked, check_if_doc_is_dynamically_linked
|
||||
if not self.flags.ignore_links:
|
||||
check_if_doc_is_linked(self, method="Cancel")
|
||||
check_if_doc_is_dynamically_linked(self)
|
||||
|
||||
@staticmethod
|
||||
def whitelist(f):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue