diff --git a/ReportImp/ASBHammReports/Budgetnachweis2.cs b/ReportImp/ASBHammReports/Budgetnachweis2.cs index 7bca84ffe..3be8b8319 100644 --- a/ReportImp/ASBHammReports/Budgetnachweis2.cs +++ b/ReportImp/ASBHammReports/Budgetnachweis2.cs @@ -110,7 +110,7 @@ namespace ASBHamm.Neu newRow.Cells[0].Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodStartDate); newRow.Cells[1].Text = String.Format("{0:dd.MM.yyyy}", ii.PeriodEndDate); newRow.Cells[2].Text = String.Format("{0:0.00}", ii.AmountPerUnit); - newRow.Cells[3].Text = String.Format("{0:0.00}", ii.UnitCount); + newRow.Cells[3].Text = String.Format("{0:0.00}", ii.UnitCount * ((ii.RateFactor + 100) / 100)); }