Div. Dakosy Nachrichten

This commit is contained in:
2024-01-02 11:30:18 +01:00
parent 7b639ea564
commit 52feeaa603
11 changed files with 3237 additions and 1214 deletions

View File

@@ -549,6 +549,18 @@ Public Class cGetMsgType
Return False
End Function
Shared Function isNCTS_QuittungEingangsverarbeitung(doc As XmlDocument, ByRef version As String) As Boolean
If doc.HasChildNodes Then
If doc.GetElementsByTagName("QuittungEingangsverarbeitung").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 isVERAG_KD(doc As XmlDocument) As Boolean
If doc.HasChildNodes Then
If doc.GetElementsByTagName("VERAG_Kundenstamm_IMPORT").Count > 0 Then