Merge branch 'master' of ssh://float.beyondsoft.de/git/beyondSoft/BeWo

This commit is contained in:
Waldi
2017-04-20 13:00:54 +02:00
21 changed files with 257 additions and 224 deletions

View File

@@ -849,20 +849,6 @@ namespace BeWo.Service.ServiceImplementations
var offeneTermine = DAOFactory.SearchDAO.GetAllOpenAppointmentsForEmployee(pEmployeeOid);
offeneTermine.AddRange(DAOFactory.SearchDAO.GetAllParticipationNotificationsForEmployee(pEmployeeOid));
//var offeneTermineInZukunft = new List<SchedulerAppointmentDC>();
//foreach (var termin in offeneTermine)
//{
// if (String.IsNullOrEmpty(termin.RecurrenceInfo))
// {
// if (termin.EndDate.HasValue && termin.EndDate < DateTime.Now.Date)
// {
// offeneTermineInZukunft.Add(termin);
// }
// }
//}
return MapperFactory.SchedulerAppointmentDCSchedulerAppointment.MapToNewDCs(offeneTermine);
}
catch (Exception e)