Modules.Jobs: Prüfe ob Value überhaupt einen Wert hat, sonst wird auch keine Datei erstellt
This commit is contained in:
parent
2673755b14
commit
267e038725
@ -778,23 +778,26 @@ Public Class ImportZUGFeRDFiles
|
|||||||
|
|
||||||
Dim oMimeTypeProperty As ValidProperty = GetIndexProperty(embAttachmentList, groupIndex, "ATTACHMENT_FILE_MIMECODE")
|
Dim oMimeTypeProperty As ValidProperty = GetIndexProperty(embAttachmentList, groupIndex, "ATTACHMENT_FILE_MIMECODE")
|
||||||
|
|
||||||
If oMimeTypeProperty IsNot Nothing AndAlso oMimeTypeProperty.Value IsNot Nothing Then
|
If oMimeTypeProperty IsNot Nothing AndAlso oMimeTypeProperty.Value.IsNotNullOrEmpty() Then
|
||||||
oMimeCodeString = oMimeTypeProperty.Value.ToLower()
|
oMimeCodeString = oMimeTypeProperty.Value.ToLower()
|
||||||
Else
|
Else
|
||||||
_logger.Info("Empty MIME-Code! File can not be stored!")
|
_logger.Debug("Empty MIME-Code! File can not be stored!")
|
||||||
Continue For
|
Continue For
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Dim oFilenameProperty As ValidProperty = GetIndexProperty(embAttachmentList, groupIndex, "ATTACHMENT_FILE_FILENAME")
|
Dim oFilenameProperty As ValidProperty = GetIndexProperty(embAttachmentList, groupIndex, "ATTACHMENT_FILE_FILENAME")
|
||||||
If oFilenameProperty IsNot Nothing Then
|
If oFilenameProperty IsNot Nothing AndAlso oFilenameProperty.Value.IsNotNullOrEmpty() Then
|
||||||
oOrgFilename = oFilenameProperty.Value
|
oOrgFilename = oFilenameProperty.Value
|
||||||
|
Else
|
||||||
|
_logger.Debug("Empty Filename! File can not be stored!")
|
||||||
|
Continue For
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Dim oBase64ValueProperty As ValidProperty = GetIndexProperty(embAttachmentList, groupIndex, "ATTACHMENT_FILE_VALUE")
|
Dim oBase64ValueProperty As ValidProperty = GetIndexProperty(embAttachmentList, groupIndex, "ATTACHMENT_FILE_VALUE")
|
||||||
If oBase64ValueProperty IsNot Nothing Then
|
If oBase64ValueProperty IsNot Nothing AndAlso oBase64ValueProperty.Value.IsNotNullOrEmpty() Then
|
||||||
oBase64String = oBase64ValueProperty.Value
|
oBase64String = oBase64ValueProperty.Value
|
||||||
Else
|
Else
|
||||||
_logger.Warn("Empty base64 String")
|
_logger.Error("Empty base64 String! File can not be stored!")
|
||||||
Continue For
|
Continue For
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@ -803,6 +806,9 @@ Public Class ImportZUGFeRDFiles
|
|||||||
Dim oFileExtension = GetEmbeddedFileExtension(oMimeTypeProperty.Value)
|
Dim oFileExtension = GetEmbeddedFileExtension(oMimeTypeProperty.Value)
|
||||||
If oFileExtension.IsNotNullOrEmpty() Then
|
If oFileExtension.IsNotNullOrEmpty() Then
|
||||||
newAttachmentFilename += "." + oFileExtension
|
newAttachmentFilename += "." + oFileExtension
|
||||||
|
Else
|
||||||
|
_logger.Warn("No extension found! File can not be stored!")
|
||||||
|
Continue For
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Dim embeddedFilePath = Path.Combine(oOutputPath, newAttachmentFilename)
|
Dim embeddedFilePath = Path.Combine(oOutputPath, newAttachmentFilename)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user