From 9ba60a3ffeb8ec1d361ae2ddddda67584840ef33 Mon Sep 17 00:00:00 2001 From: Alexandra Date: Mon, 14 Oct 2024 16:56:04 +0200 Subject: [PATCH] AwoDortmund/Export/DiamantExporter.cs - Bugfix bei mehreren RePositionen Soziotherapie --- ReportImp/AwoDortmund/Export/DiamantExporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReportImp/AwoDortmund/Export/DiamantExporter.cs b/ReportImp/AwoDortmund/Export/DiamantExporter.cs index 82c040566..0b01e30c1 100644 --- a/ReportImp/AwoDortmund/Export/DiamantExporter.cs +++ b/ReportImp/AwoDortmund/Export/DiamantExporter.cs @@ -184,7 +184,7 @@ namespace AwoDortmund.Export decimal betrag = ErzeugeBetrag(item); if (betrag != 0) { - sb.Append(String.Format("{0:0.00}", betrag * -1)); + sb.Append(String.Format("{0:0.00}", betrag)); sb.Append(";"); } }