From 086da451caaf89b0c6d9bdf8fbee822bf19f6cfc Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Mon, 30 Jul 2018 19:11:14 +0530 Subject: [PATCH] Removed academic term from validation to check duplicate program enrollement (#15046) --- .../education/doctype/program_enrollment/program_enrollment.py | 1 - 1 file changed, 1 deletion(-) diff --git a/erpnext/education/doctype/program_enrollment/program_enrollment.py b/erpnext/education/doctype/program_enrollment/program_enrollment.py index 455ad9cfd7..320a58a924 100644 --- a/erpnext/education/doctype/program_enrollment/program_enrollment.py +++ b/erpnext/education/doctype/program_enrollment/program_enrollment.py @@ -26,7 +26,6 @@ class ProgramEnrollment(Document): "student": self.student, "program": self.program, "academic_year": self.academic_year, - "academic_term": self.academic_term, "docstatus": ("<", 2), "name": ("!=", self.name) })