From c2c6c834afdc8da588df8fae09368812e7b39009 Mon Sep 17 00:00:00 2001 From: Marcel Hirschle Date: Fri, 27 Jan 2023 10:31:40 +0100 Subject: [PATCH] MH: PortaEV AZ-Kategorie angepasst --- ReportImp/PortaEV/CustomMitarbeiterstundenkontoBerechnung.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReportImp/PortaEV/CustomMitarbeiterstundenkontoBerechnung.cs b/ReportImp/PortaEV/CustomMitarbeiterstundenkontoBerechnung.cs index b0b813230..972bbd59c 100644 --- a/ReportImp/PortaEV/CustomMitarbeiterstundenkontoBerechnung.cs +++ b/ReportImp/PortaEV/CustomMitarbeiterstundenkontoBerechnung.cs @@ -29,7 +29,7 @@ namespace PortaEV { if (item.ServiceDescription != null && item.ServiceDescription.ServiceCategory != null) { - if (item.ServiceDescription.ServiceCategory.Name == "Arbeitszeit") + if (item.ServiceDescription.ServiceCategory.Name.Contains("Arbeitszeit")) { return true; } @@ -69,7 +69,7 @@ namespace PortaEV if (item.ServiceDescription != null && item.ServiceDescription.ServiceCategory != null) { - if (item.ServiceDescription.ServiceCategory.Name == "Arbeitszeit") + if (item.ServiceDescription.ServiceCategory.Name.Contains("Arbeitszeit")) { arbeitszeit += duration; }