ChristopherusHaus/SupportConceptReport.cs - Fehler in Quotenberechnung gefixt

This commit is contained in:
2025-04-23 16:57:31 +02:00
parent 77eb67a504
commit b0e377273f

View File

@@ -38,7 +38,7 @@ namespace BeWo.ChristopherusHaus
}
if (zeitFk > 0)
{
quote = zeitNFk / zeitFk;
quote = zeitFk / (zeitNFk + zeitFk);
sc.Custom1 = String.Format("{0:0.0}%", (100 * quote));
}
else if (zeitNFk > 0 )