9 lines
192 B
Python
9 lines
192 B
Python
import frappe
|
|
|
|
def execute():
|
|
frappe.reload_doc("education", "doctype", "student_attendance")
|
|
frappe.db.sql('''
|
|
update `tabStudent Attendance` set
|
|
docstatus=0
|
|
where
|
|
docstatus=1''') |