mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-03 21:48:27 +00:00
7 lines
217 B
Python
7 lines
217 B
Python
import webnotes
|
|
def execute():
|
|
webnotes.conn.sql("""update `tabCompany` set docstatus = 0
|
|
where docstatus is null""")
|
|
|
|
webnotes.conn.sql("""update `tabFiscal Year` set docstatus = 0
|
|
where docstatus is null""") |