diff --git a/ReportImp/ArbeiterwohlfahrtWesel/CustomMitarbeiterstundenkontoBerechnung.cs b/ReportImp/ArbeiterwohlfahrtWesel/CustomMitarbeiterstundenkontoBerechnung.cs index e95e97de7..8d71ef188 100644 --- a/ReportImp/ArbeiterwohlfahrtWesel/CustomMitarbeiterstundenkontoBerechnung.cs +++ b/ReportImp/ArbeiterwohlfahrtWesel/CustomMitarbeiterstundenkontoBerechnung.cs @@ -30,7 +30,7 @@ namespace ArbeiterwohlfahrtWesel if (item.ServiceDescription != null && item.ServiceDescription.ServiceCategory != null) { - if (item.ServiceDescription.ServiceCategory.Name == "Arbeitszeit") + if (item.ServiceDescription.ServiceCategory.Name.ToLower().Contains("arbeitszeit")) { return true; } @@ -71,7 +71,7 @@ namespace ArbeiterwohlfahrtWesel if (item.ServiceDescription != null && item.ServiceDescription.ServiceCategory != null) { - if (item.ServiceDescription.ServiceCategory.Name == "Arbeitszeit") + if (item.ServiceDescription.ServiceCategory.Name.ToLower().Contains("arbeitszeit")) { arbeitszeit += duration; }