Das Übertragen eines Kalendertermins in die Zeiterfassung funktioniert jetzt wieder bei Serienterminen.

This commit is contained in:
2026-03-27 15:14:20 +01:00
parent f17bafe24b
commit ccb1a37a95
17 changed files with 435 additions and 255 deletions

View File

@@ -9092,5 +9092,12 @@ namespace BeWo.Service.ServiceImplementations
throw Utils.CreateBeWoFaultException(e);
}
}
public List<ResourceDC> GetResourcesByOids(List<long> resourceOids)
{
var resources = DAOFactory.GenericDAO.GetActiveByIDs<Resource>(resourceOids);
return MapperFactory.ResourceDC_Resource.MapToNewDCs(resources);
}
}
}