IDS fix, Rundung Bankspesen, etc.
This commit is contained in:
@@ -709,9 +709,9 @@ Public Class usrcntlFakturierung
|
||||
|
||||
If sumCurrenRow > 0 Then
|
||||
|
||||
preis = Math.Round(sumCurrenRow * rowBS("Bankspesen %") + 0.5, 2)
|
||||
preis = CInt(Math.Round(sumCurrenRow * rowBS("Bankspesen %") + 0.5, MidpointRounding.AwayFromZero))
|
||||
Else
|
||||
preis = Math.Round(0 - sumCurrenRow * rowBS("Bankspesen %") + 0.5, 2)
|
||||
preis = CInt(Math.Round(0 - sumCurrenRow * rowBS("Bankspesen %") + 0.5, MidpointRounding.AwayFromZero))
|
||||
|
||||
End If
|
||||
Else
|
||||
|
||||
Reference in New Issue
Block a user