From 93ae2beea5671d438fff4228a616d20b0e6c0755 Mon Sep 17 00:00:00 2001 From: Rene Evertz Date: Thu, 24 Jul 2025 14:09:10 +0200 Subject: [PATCH] =?UTF-8?q?Kleiner=20Fix:=20Anzahl=20nur=20bei=20FlexibleR?= =?UTF-8?q?eportEntry,=20die=20von=20ServiceRecord=20kommen.=20Dummies,=20?= =?UTF-8?q?Customer=20und=20Employee=20Eintr=C3=A4ge=20bekommen=20keine=20?= =?UTF-8?q?Anzahl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BeWo/View/Detail/Report/FlexibleReportView.xaml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BeWo/View/Detail/Report/FlexibleReportView.xaml.cs b/BeWo/View/Detail/Report/FlexibleReportView.xaml.cs index d2c8320ea..9247f194e 100644 --- a/BeWo/View/Detail/Report/FlexibleReportView.xaml.cs +++ b/BeWo/View/Detail/Report/FlexibleReportView.xaml.cs @@ -750,7 +750,7 @@ namespace BeWo.View.Detail.Report public decimal DifferenzBetreuungszeitIstSollStunden => DifferenzBetreuungszeitIstSollMinuten / 60; - public int Anzahl => 1; + public int Anzahl { get; set; } public static FlexibleReportEntry InitByFlexibleReportEntryDC(FlexibleReportEntryDC entryDC) { @@ -783,6 +783,7 @@ namespace BeWo.View.Detail.Report Notice3 = entryDC.Notice3, Notice4 = entryDC.Notice4, Notice5 = entryDC.Notice5, + Anzahl = 1 }; return entry; }