fix: allow creating Shift Assignment for same day (#28613)

This commit is contained in:
Rucha Mahabal 2021-11-30 10:15:41 +05:30 committed by GitHub
parent fb14b0901c
commit 4458b24813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,8 +19,8 @@ class ShiftAssignment(Document):
validate_active_employee(self.employee)
self.validate_overlapping_dates()
if self.end_date and self.end_date <= self.start_date:
frappe.throw(_("End Date must not be lesser than Start Date"))
if self.end_date:
self.validate_from_to_dates('start_date', 'end_date')
def validate_overlapping_dates(self):
if not self.name: