This commit is contained in:
2022-09-30 22:18:26 +02:00
parent 1e7312208e
commit 265cfe1f18
9 changed files with 596 additions and 104 deletions

View File

@@ -516,6 +516,15 @@ Public Class cGetMsgType
End If
Return False
End Function
Shared Function isPLOSE_INVData(doc As String) As Boolean
Dim lines() As String = IO.File.ReadAllLines(doc)
If lines.Count > 0 Then
If lines(0).ToString.StartsWith("PloseCode") Then
Return True
End If
End If
Return False
End Function
End Class