Skip to content

Commit

Permalink
fix(Holiday List): sort holidays on save to avoid disorienting the us…
Browse files Browse the repository at this point in the history
…er (#42236)

fix: sort holidays on save to avoid disorienting the user
  • Loading branch information
ruchamahabal committed Jul 9, 2024
1 parent 0c76a8c commit ad13725
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions erpnext/setup/doctype/holiday_list/holiday_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def validate(self):
self.validate_days()
self.total_holidays = len(self.holidays)
self.validate_duplicate_date()
self.sort_holidays()

@frappe.whitelist()
def get_weekly_off_dates(self):
Expand All @@ -57,8 +58,6 @@ def get_weekly_off_dates(self):

self.append("holidays", {"description": _(self.weekly_off), "holiday_date": d, "weekly_off": 1})

self.sort_holidays()

@frappe.whitelist()
def get_supported_countries(self):
from holidays.utils import list_supported_countries
Expand Down Expand Up @@ -100,8 +99,6 @@ def get_local_holidays(self):
"holidays", {"description": holiday_name, "holiday_date": holiday_date, "weekly_off": 0}
)

self.sort_holidays()

def sort_holidays(self):
self.holidays.sort(key=lambda x: getdate(x.holiday_date))
for i in range(len(self.holidays)):
Expand Down

0 comments on commit ad13725

Please sign in to comment.