EXG-Gestellung Ausfuhr

This commit is contained in:
2025-01-22 11:53:23 +01:00
parent 014037d610
commit ff1d2a4d20
11 changed files with 12461 additions and 4 deletions

View File

@@ -316,6 +316,18 @@ Public Class cGetMsgType
Return False
End Function
Shared Function isEZA_DatenZumAusgang(doc As XmlDocument, ByRef VERSION As String) As Boolean
If doc.HasChildNodes Then
If doc.GetElementsByTagName("DataEXITDE").Count > 0 Then
If doc.GetElementsByTagName("Version").Count > 0 Then
VERSION = doc.GetElementsByTagName("Version")(0).InnerText
End If
Return True
End If
End If
Return False
End Function
Shared Function isEZA_SumAErledigungsinformationCDXWare(doc As XmlDocument, ByRef VERSION As String) As Boolean
If doc.HasChildNodes Then
If doc.GetElementsByTagName("SumAErledigungsinformationCDXWare").Count > 0 Then