diff --git a/ReportImp/MalteserJohanniterJohanneshaus/Reporting/BelegungsquotenRO.cs b/ReportImp/MalteserJohanniterJohanneshaus/Reporting/BelegungsquotenRO.cs index a8e66f2a4..6a92240eb 100644 --- a/ReportImp/MalteserJohanniterJohanneshaus/Reporting/BelegungsquotenRO.cs +++ b/ReportImp/MalteserJohanniterJohanneshaus/Reporting/BelegungsquotenRO.cs @@ -220,7 +220,11 @@ namespace MalteserJohanniterJohanneshaus.Reporting if (cbrel.EndDate.Value < berichtStart) continue; else if (cbrel.EndDate.Value < berichtEnde) - ende = cbrel.EndDate.Value; + { + // Der letzte Tag der Bewilligung zählt nicht mehr als belegt, also einen Tag abziehen + ende = cbrel.EndDate.Value.AddDays(-1); + + } }