Update set_student_guardian.py
This commit is contained in:
parent
fff6e19479
commit
e5d13f3156
@ -5,10 +5,12 @@ def execute():
|
||||
frappe.reload_doc("schools", "doctype", "student")
|
||||
frappe.reload_doc("schools", "doctype", "student_guardian")
|
||||
frappe.reload_doc("schools", "doctype", "student_sibling")
|
||||
if "student" not in frappe.db.get_table_columns("Guardian"):
|
||||
return
|
||||
guardian = frappe.get_all("Guardian", fields=["name", "student"])
|
||||
for d in guardian:
|
||||
if d.student:
|
||||
student = frappe.get_doc("Student", d.student)
|
||||
if student:
|
||||
student.append("guardians", {"guardian": d.name})
|
||||
student.save()
|
||||
student.save()
|
||||
|
Loading…
x
Reference in New Issue
Block a user