diff --git a/Report/ReportObjects/FLSSollIstReportRO.cs b/Report/ReportObjects/FLSSollIstReportRO.cs index 8221c51f2..df9794402 100644 --- a/Report/ReportObjects/FLSSollIstReportRO.cs +++ b/Report/ReportObjects/FLSSollIstReportRO.cs @@ -182,6 +182,13 @@ namespace BeWo.Report.ReportObjects } } + foreach (var ws in grpRo.WochenSummen) + { + if (!ws.SollStunden.HasValue) + { + ws.SollStunden = root.SollFLSPerWeek; + } + } grpRo.IstGesamt = grpRo.IstGesamt / 60; rootRo.IstGesamt += grpRo.IstGesamt; rootRo.SollGesamt = grpRo.WochenSummen.Sum(w => w.SollStunden) ?? 0;