Fehlkontakte in Finanzauswertung + Fehlkontakte in Validator + Report Anpassungen KKKleve und SPZ Leverkusen

This commit is contained in:
Christian
2023-07-04 01:36:06 +02:00
parent f7b3f7584c
commit f5c44a71f9
25 changed files with 2112 additions and 563 deletions

View File

@@ -454,7 +454,16 @@ namespace BeWo.Service.ServiceImplementations
throw Utils.CreateBeWoFaultException(e);
}
}
public List<SupportConceptOverviewDC> GetSupportConceptAnalysis(long? currentEmployeeOid,
bool showOnlyRelatedSCs,
bool showArchivedSCs,
DateTime? appointedDate)
{
return GetSupportConceptAnalysis2(currentEmployeeOid, null, appointedDate, null, showArchivedSCs);
}
public List<SupportConceptOverviewDC> GetSupportConceptAnalysis2(long? employeeOid, long? teamOid, DateTime? appointedDate, int? expiredMonths, bool showArchivedScs)
{
try
@@ -511,13 +520,6 @@ namespace BeWo.Service.ServiceImplementations
}
}
public List<SupportConceptOverviewDC> GetSupportConceptAnalysis(long? currentEmployeeOid,
bool showOnlyRelatedSCs,
bool showArchivedSCs,
DateTime? appointedDate)
{
return GetSupportConceptAnalysis2(currentEmployeeOid, null, appointedDate, null, showArchivedSCs);
}
public List<CompactSupportConceptDC> GetSupportConceptsWithConferenceDate(long? employeeOid, DateTime conferenceDateUntil)
{