MDM_USTVA, etc.

This commit is contained in:
2025-03-31 12:05:44 +02:00
parent 47459d90cd
commit 3d1a26c644
4 changed files with 143 additions and 65 deletions

View File

@@ -1337,7 +1337,8 @@ Public Class cProgramFunctions
If valueTmp Is DBNull.Value Then
row.Item(column.Index) = ""
Else
If replaceZeroDate AndAlso Not IsNumeric(valueTmp) Then valueTmp = valueTmp.ToString.Replace(" 00:00:00", "")
If replaceZeroDate AndAlso valueTmp IsNot Nothing AndAlso Not IsNumeric(valueTmp) Then valueTmp = valueTmp.ToString.Replace(" 00:00:00", "")
row.Item(column.Index) = valueTmp
End If
Next