From e7d622da052dfbbaf5cff22623638f74a1b86d02 Mon Sep 17 00:00:00 2001 From: Marcel Hirschle Date: Fri, 10 May 2024 12:32:56 +0200 Subject: [PATCH] MH: LH Coburg Sortierung --- ReportImp/LebenshilfeCoburg/CollectiveBillingReport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReportImp/LebenshilfeCoburg/CollectiveBillingReport.cs b/ReportImp/LebenshilfeCoburg/CollectiveBillingReport.cs index a1154b928..1ca064fa8 100644 --- a/ReportImp/LebenshilfeCoburg/CollectiveBillingReport.cs +++ b/ReportImp/LebenshilfeCoburg/CollectiveBillingReport.cs @@ -24,7 +24,7 @@ namespace LebenshilfeCoburg } if (pRO.ServiceInvoicePeriods != null) { - pRO.ServiceInvoicePeriods.OrderBy(sip => sip.Customer.LastName); + pRO.ServiceInvoicePeriods = pRO.ServiceInvoicePeriods.OrderBy(sip => sip.Customer.LastName).ToList(); foreach (var sip in pRO.ServiceInvoicePeriods) {