MH: PortaEV AZ-Kategorie angepasst

This commit is contained in:
2023-01-27 10:31:40 +01:00
parent 951fde3a12
commit c2c6c834af

View File

@@ -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;
}