EXG, DY Atilla
This commit is contained in:
@@ -10873,22 +10873,30 @@ Public Class frmDYNachrichtenVerarbeitung
|
||||
|
||||
Shared Function isAtez(bezugsNr As String) As Boolean
|
||||
Dim atez As Boolean = False
|
||||
Try
|
||||
|
||||
If bezugsNr <> "" AndAlso bezugsNr.Length > 4 AndAlso bezugsNr.Substring(bezugsNr.Length, 4) = "ATEZ" Then
|
||||
atez = True
|
||||
End If
|
||||
If bezugsNr <> "" AndAlso bezugsNr.Length > 4 AndAlso bezugsNr.Substring(0, 4) = "ATEZ" Then
|
||||
atez = True
|
||||
End If
|
||||
|
||||
Catch ex As Exception
|
||||
VERAG_PROG_ALLGEMEIN.cErrorHandler.ERR(ex.Message, ex.StackTrace & vbNewLine, System.Reflection.MethodInfo.GetCurrentMethod.Name)
|
||||
End Try
|
||||
Return atez
|
||||
|
||||
End Function
|
||||
|
||||
Shared Function isAtezIRU(bezugsNr As String) As Boolean
|
||||
Dim atez As Boolean = False
|
||||
Try
|
||||
|
||||
If bezugsNr <> "" AndAlso bezugsNr.Length > 4 AndAlso bezugsNr.Substring(bezugsNr.Length, 4) = "IRU0" Then
|
||||
If bezugsNr <> "" AndAlso bezugsNr.Length > 4 AndAlso bezugsNr.Substring(0, 4) = "IRU0" Then
|
||||
atez = True
|
||||
End If
|
||||
|
||||
Catch ex As Exception
|
||||
VERAG_PROG_ALLGEMEIN.cErrorHandler.ERR(ex.Message, ex.StackTrace & vbNewLine, System.Reflection.MethodInfo.GetCurrentMethod.Name)
|
||||
End Try
|
||||
Return atez
|
||||
|
||||
End Function
|
||||
|
||||
Reference in New Issue
Block a user