diff --git a/ReportImp/BetreutesWohnenAmRheinReports/Service/CustomVacationService.cs b/ReportImp/BetreutesWohnenAmRheinReports/Service/CustomVacationService.cs index f1a6f422e..4366b9986 100644 --- a/ReportImp/BetreutesWohnenAmRheinReports/Service/CustomVacationService.cs +++ b/ReportImp/BetreutesWohnenAmRheinReports/Service/CustomVacationService.cs @@ -26,6 +26,13 @@ namespace BetreutesWohnenAmRheinReports.Service var osterSonntag = GetOsterSonntag(year); list.Add(new FeiertagDC() {Datum = osterSonntag.AddDays(-48), Name = "Rosenmontag" }); // "Rosenmontag" + if (year >= 2024) + { + var heiligabend = list.FirstOrDefault(l => l.Name == "Heilig Abend"); + if (heiligabend != null) + list.Remove(heiligabend); + } + return list; } }