diff --git a/ReportImp/BeWoDarmstadt/BeWoDarmstadt.csproj b/ReportImp/BeWoDarmstadt/BeWoDarmstadt.csproj
index 05d1c7d56..80babb7a9 100644
--- a/ReportImp/BeWoDarmstadt/BeWoDarmstadt.csproj
+++ b/ReportImp/BeWoDarmstadt/BeWoDarmstadt.csproj
@@ -82,6 +82,12 @@
+
+ Component
+
+
+ TeamuebersichtKA.cs
+
Component
@@ -127,6 +133,10 @@
ServiceInvoiceReport.cs
Designer
+
+ TeamuebersichtKA.cs
+ Designer
+
Teamuebersicht.cs
Designer
diff --git a/ReportImp/BeWoDarmstadt/Teamuebersicht.cs b/ReportImp/BeWoDarmstadt/Teamuebersicht.cs
index d8d83346e..b94deacc0 100644
--- a/ReportImp/BeWoDarmstadt/Teamuebersicht.cs
+++ b/ReportImp/BeWoDarmstadt/Teamuebersicht.cs
@@ -59,11 +59,9 @@ namespace BeWoDarmstadt
{
foreach (var sr in scRo.ServiceRecords)
{
- if (sr.GroupRoundedDuration != null && sr.GroupRoundedDuration != 0 &&
- sr.Start >= pRO.ReportStartDate.Value && sr.Start.Value.Date <= end)
+ if (sr.GroupRoundedDuration != null && sr.GroupRoundedDuration != 0 && sr.Start >= pRO.ReportStartDate.Value && sr.Start.Value.Date <= end)
scRo.AmountPaid += sr.RoundedDuration / 60;
- if (sr.ServiceDescription != null && sr.ServiceDescription.Name == "ZwR" &&
- sr.Start >= pRO.ReportStartDate.Value && sr.Start.Value.Date <= end)
+ if (sr.ServiceDescription != null && sr.ServiceDescription.Name == "ZwR" && sr.Start >= pRO.ReportStartDate.Value && sr.Start.Value.Date <= end)
scRo.AmountTotal += sr.RoundedDuration / 60;
if (sr.Start >= monthStart && sr.Start.Value.Date <= end)
{