Merge pull request #5954 from nabinhait/guardian_patch_fix
Run guardian patch only if student doctype exists and there is father_name column
This commit is contained in:
commit
e810ea3a2f
@ -3,6 +3,7 @@ import frappe
|
|||||||
|
|
||||||
def execute():
|
def execute():
|
||||||
frappe.reload_doc("buying", "doctype", "request_for_quotation_supplier")
|
frappe.reload_doc("buying", "doctype", "request_for_quotation_supplier")
|
||||||
|
frappe.reload_doc("buying", "doctype", "request_for_quotation_item")
|
||||||
frappe.reload_doc("buying", "doctype", "request_for_quotation")
|
frappe.reload_doc("buying", "doctype", "request_for_quotation")
|
||||||
frappe.reload_doc("projects", "doctype", "timesheet")
|
frappe.reload_doc("projects", "doctype", "timesheet")
|
||||||
|
|
||||||
|
@ -2,12 +2,16 @@ from __future__ import unicode_literals
|
|||||||
import frappe
|
import frappe
|
||||||
|
|
||||||
def execute():
|
def execute():
|
||||||
students = frappe.get_list("Student", fields=["name", "father_name", "father_email_id", "mother_name", "mother_email_id"])
|
if frappe.db.exists("DocType", "Student") and "father_name" in frappe.db.get_table_columns("Student"):
|
||||||
for stud in students:
|
frappe.reload_doc("schools", "doctype", "student")
|
||||||
if stud.father_name:
|
|
||||||
make_guardian(stud.father_name, stud.name, stud.father_email_id)
|
students = frappe.get_list("Student", fields=["name", "father_name", "father_email_id",
|
||||||
if stud.mother_name:
|
"mother_name", "mother_email_id"])
|
||||||
make_guardian(stud.mother_name, stud.name, stud.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)
|
||||||
|
|
||||||
def make_guardian(name, student, email=None):
|
def make_guardian(name, student, email=None):
|
||||||
frappe.get_doc({
|
frappe.get_doc({
|
||||||
|
Loading…
Reference in New Issue
Block a user