fix:Future date of birth accepted at Sibling Detail section in Student form #20619

This commit is contained in:
indictrans 2020-02-16 22:59:41 +05:30
parent 1118ee07a8
commit ad5da823e1

View File

@ -23,8 +23,8 @@ class Student(Document):
def validate_dates(self):
for sibling in self.siblings:
if sibling.date_of_birth and getdate(sibling.date_of_birth) >= getdate(today()):
frappe.throw(_("Sibling Date of Birth cannot be greater than today at row #{0} ").format(sibling.idx))
if sibling.date_of_birth and getdate(sibling.date_of_birth) >= getdate():
frappe.throw(_("Row {0}:Sibling Date of Birth cannot be greater than today").format(sibling.idx))
if self.date_of_birth and getdate(self.date_of_birth) >= getdate(today()):
frappe.throw(_("Date of Birth cannot be greater than today."))