Skip to content

Commit

Permalink
fix: alignment issue fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nandhinidevi123 committed Sep 5, 2024
1 parent 6c1bf04 commit 03cd945
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion hrms/hr/doctype/interview/interview.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,14 @@ def reschedule_interview(self, scheduled_on, from_time, to_time):
original_from_time = self.from_time
original_to_time = self.to_time

self.db_set({"scheduled_on": scheduled_on, "from_time": from_time, "to_time": to_time,"status":"Rescheduled Interview"})
self.db_set(
{
"scheduled_on": scheduled_on,
"from_time": from_time,
"to_time": to_time,
"status": "Rescheduled Interview",
}
)
self.notify_update()

recipients = get_recipients(self.name)
Expand Down

0 comments on commit 03cd945

Please sign in to comment.