diff --git a/ReportImp/Humanitas/CustomMitarbeiterstundenkontoBerechnung.cs b/ReportImp/Humanitas/CustomMitarbeiterstundenkontoBerechnung.cs index fa13c44cb..33ec8ef76 100644 --- a/ReportImp/Humanitas/CustomMitarbeiterstundenkontoBerechnung.cs +++ b/ReportImp/Humanitas/CustomMitarbeiterstundenkontoBerechnung.cs @@ -28,7 +28,10 @@ namespace Humanitas { var list = base.GetFeiertage(year); - list.Add(new DateTime(year, 12, 31)); + if (year <= 2024) + { + list.Add(new DateTime(year, 12, 31)); + } var osterSonntag = GetOsterSonntag(year); list.Add(osterSonntag.AddDays(-48)); // "Rosenmontag" diff --git a/ReportImp/Humanitas/Humanitas.csproj b/ReportImp/Humanitas/Humanitas.csproj index 7cfd19785..21da1839d 100644 --- a/ReportImp/Humanitas/Humanitas.csproj +++ b/ReportImp/Humanitas/Humanitas.csproj @@ -65,7 +65,6 @@ Finanzauswertung.cs - Component @@ -156,6 +155,8 @@ - + + + \ No newline at end of file diff --git a/ReportImp/Humanitas/Import/AbschlagszahlungImport.cs b/ReportImp/Humanitas/Import/AbschlagszahlungImport.cs deleted file mode 100644 index deaed1ca5..000000000 --- a/ReportImp/Humanitas/Import/AbschlagszahlungImport.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using BeWo.Data.Access; -using BeWo.Data.Entities; -using BeWo.Service.MessageContracts; -using BeWo.Service.Plugins; -using DevExpress.XtraPrinting.Native; - -namespace Humanitas.Import -{ - public class AbschlagszahlungImport : DataImporter - { - - public override UploadImportFileResult ImportData(string filename, byte[] daten) - { - return ImportLvrAvise(filename, daten); - } - } -}