From 008b93eb383b8c55c17fe7bac2f1a33db1a8572d Mon Sep 17 00:00:00 2001 From: Marcel Hirschle Date: Tue, 18 Apr 2023 15:56:39 +0200 Subject: [PATCH] MH: AutismusKoelnBonn Nummern --- .../Invoicing/CustomInvoiceNumberGenerator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReportImp/AutismusKoelnBonn/Invoicing/CustomInvoiceNumberGenerator.cs b/ReportImp/AutismusKoelnBonn/Invoicing/CustomInvoiceNumberGenerator.cs index d5e0dcfad..0b4afe849 100644 --- a/ReportImp/AutismusKoelnBonn/Invoicing/CustomInvoiceNumberGenerator.cs +++ b/ReportImp/AutismusKoelnBonn/Invoicing/CustomInvoiceNumberGenerator.cs @@ -54,8 +54,8 @@ namespace AutismusKoelnBonn.Invoicing { string next = base.ApplyPatternWithId(pattern, number, id); - next = next.Replace("{AM}", invoiceBase.AccountingPeriodEnd.Value.Month.ToString()); - next = next.Replace("{AJ}", string.Format("{0:yy}", invoiceBase.AccountingPeriodEnd.Value)); + next = next.Replace("{AM}", invoiceBase.AccountingPeriodEnd.Value.Month.ToString()); // Abrechnungsmonat (Letzter des Zeitraums) + next = next.Replace("{AJ}", string.Format("{0:yy}", invoiceBase.AccountingPeriodEnd.Value)); // Abrechnungsjahr return next; }