Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions check_run/check_run/doctype/check_run/check_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def process_check_run(self) -> None:

def _process_check_run(self, save: bool = False) -> None:
frappe.defaults.set_global_default("check_run_submitting", self.name)
frappe.db.sql("SAVEPOINT process_check_run")
frappe.db.sql("SAVEPOINT process_check_run") # sql:ignore
try:
__transactions = self.transactions
_transactions = json.loads(__transactions)
Expand All @@ -233,7 +233,7 @@ def _process_check_run(self, save: bool = False) -> None:
self.save()
self.submit()
self.create_and_attach_positive_pay()
frappe.db.sql("RELEASE SAVEPOINT process_check_run")
frappe.db.sql("RELEASE SAVEPOINT process_check_run") # sql:ignore

def build_nacha_file(self, settings: CheckRunSettings) -> str:
electronic_mop = frappe.get_all(
Expand Down
Loading
Loading