2016-07-22 01:17:39 +05:30
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
|
|
|
|
def execute():
|
2016-08-01 17:31:17 +05:30
|
|
|
if frappe.db.exists("DocType", "Student") and "father_name" in frappe.db.get_table_columns("Student"):
|
|
|
|
frappe.reload_doc("schools", "doctype", "student")
|
2016-08-01 17:46:44 +05:30
|
|
|
frappe.reload_doc("schools", "doctype", "guardian")
|
2016-08-01 17:59:00 +05:30
|
|
|
frappe.reload_doc("schools", "doctype", "guardian_interest")
|
2016-08-02 00:01:00 +05:30
|
|
|
frappe.reload_doc("hr", "doctype", "interest")
|
2016-08-01 17:31:17 +05:30
|
|
|
|
2016-08-01 17:46:44 +05:30
|
|
|
students = frappe.get_all("Student", fields=["name", "father_name", "father_email_id",
|
2016-08-01 17:31:17 +05:30
|
|
|
"mother_name", "mother_email_id"])
|
|
|
|
for stud in students:
|
|
|
|
if stud.father_name:
|
|
|
|
make_guardian(stud.father_name, stud.name, stud.father_email_id)
|
|
|
|
if stud.mother_name:
|
|
|
|
make_guardian(stud.mother_name, stud.name, stud.mother_email_id)
|
2016-07-22 01:17:39 +05:30
|
|
|
|
|
|
|
def make_guardian(name, student, email=None):
|
|
|
|
frappe.get_doc({
|
|
|
|
'doctype': 'Guardian',
|
|
|
|
'guardian_name': name,
|
|
|
|
'email': email,
|
|
|
|
'student': student
|
|
|
|
}).insert()
|