Compare commits
2 Commits
f4ba4d9e1d
...
9ae5465c48
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ae5465c48 | |||
| 82139fc30d |
@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
|
||||
<Assembly: AssemblyCompany("Digital Data")>
|
||||
<Assembly: AssemblyProduct("Modules.Jobs")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2025")>
|
||||
<Assembly: AssemblyTrademark("3.0.2.0")>
|
||||
<Assembly: AssemblyTrademark("3.0.3.0")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
@ -30,5 +30,5 @@ Imports System.Runtime.InteropServices
|
||||
' Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
|
||||
<Assembly: AssemblyVersion("3.0.2.0")>
|
||||
<Assembly: AssemblyFileVersion("3.0.2.0")>
|
||||
<Assembly: AssemblyVersion("3.0.3.0")>
|
||||
<Assembly: AssemblyFileVersion("3.0.3.0")>
|
||||
|
||||
@ -1185,9 +1185,10 @@ Public Class ImportZUGFeRDFiles
|
||||
oGroupCounterValue = 0
|
||||
End If
|
||||
|
||||
'If oProperty.Value.Length > 900 Then
|
||||
' _logger.Warn("Value for field [{0}] is longer than 900 characters, will be truncated!", oProperty.TableColumn)
|
||||
'End If
|
||||
If oProperty.Value.Length > 4000 Then
|
||||
_logger.Warn("Value for field [{0}] is longer than 4000 characters, will be truncated!", oProperty.TableColumn)
|
||||
oProperty.Value = oProperty.Value.Truncate(4000)
|
||||
End If
|
||||
|
||||
Dim oDescription As String
|
||||
If oProperty.EN16931_ID IsNot Nothing AndAlso oProperty.EN16931_ID.Length > 1 Then
|
||||
@ -1199,7 +1200,6 @@ Public Class ImportZUGFeRDFiles
|
||||
Dim oNewRow As DataRow = oDataTable.NewRow()
|
||||
oNewRow("REFERENCE_GUID") = pMessageId
|
||||
oNewRow("ITEM_DESCRIPTION") = oDescription
|
||||
'oNewRow("ITEM_VALUE") = oProperty.Value.Truncate(900)
|
||||
oNewRow("ITEM_VALUE") = oProperty.Value
|
||||
oNewRow("GROUP_COUNTER") = oGroupCounterValue
|
||||
oNewRow("SPEC_NAME") = oProperty.TableColumn
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user