minor fix for the program enrollment tool
This commit is contained in:
parent
a4502c4f6b
commit
ccf2b7b08b
@ -26,7 +26,7 @@ class ProgramEnrollmentTool(Document):
|
|||||||
elif self.get_students_from == "Program Enrollment":
|
elif self.get_students_from == "Program Enrollment":
|
||||||
condition2 = 'and student_batch_name=%(student_batch)s' if self.student_batch else " "
|
condition2 = 'and student_batch_name=%(student_batch)s' if self.student_batch else " "
|
||||||
students = frappe.db.sql('''select student, student_name, student_batch_name from `tabProgram Enrollment`
|
students = frappe.db.sql('''select student, student_name, student_batch_name from `tabProgram Enrollment`
|
||||||
where program=%(program)s and academic_year=%(academic_year)s {0} {1}'''
|
where program=%(program)s and academic_year=%(academic_year)s {0} {1} and docstatus != 2'''
|
||||||
.format(condition, condition2), self.as_dict(), as_dict=1)
|
.format(condition, condition2), self.as_dict(), as_dict=1)
|
||||||
|
|
||||||
student_list = [d.student for d in students]
|
student_list = [d.student for d in students]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user