Files
schuetz3-erpnext/erpnext/patches/v13_0/set_pos_closing_as_failed.py
2021-11-25 17:42:24 +05:30

9 lines
200 B
Python

import frappe
def execute():
frappe.reload_doc('accounts', 'doctype', 'pos_closing_entry')
frappe.db.sql("update `tabPOS Closing Entry` set `status` = 'Failed' where `status` = 'Queued'")