From 8624d178e92e6558b9fb5e6d1893bb5435ed2c57 Mon Sep 17 00:00:00 2001 From: Marcel Hirschle Date: Thu, 15 Aug 2024 13:16:13 +0200 Subject: [PATCH] MH: Severin QB Datum ohne Unterschrift --- ReportImp/SeverinReports/ServicesOverviewReport.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ReportImp/SeverinReports/ServicesOverviewReport.cs b/ReportImp/SeverinReports/ServicesOverviewReport.cs index 9bd26ba8c..e8f3d33c5 100644 --- a/ReportImp/SeverinReports/ServicesOverviewReport.cs +++ b/ReportImp/SeverinReports/ServicesOverviewReport.cs @@ -38,6 +38,9 @@ namespace BeWo.SeverinReports notBillable += s.FLSQualified; } + if (pRO.CustomerSignatureDate == null) + pRO.CustomerSignatureDate = DateTime.Now; + labelAbrechenbarWert.Text = billable * 60 + " FLM / " + string.Format("{0:0.00}", billable) + " FLS"; labelNichtAbrechenbarWert.Text = notBillable * 60 + " FLM / " + string.Format("{0:0.00}", notBillable) + " FLS"; labelFehlkontakteWert.Text = fehlkontakt * 60 + " FLM / " + string.Format("{0:0.00}", fehlkontakt) + " FLS";