NCTS TR ; OpenAI
This commit is contained in:
@@ -91,17 +91,17 @@ Public Class usrCntlATLAS_EXGestellung
|
||||
'MRN Prüfung:
|
||||
For Each l In rtbMRN.Lines
|
||||
If l.Trim <> "" Then
|
||||
If l.Length >= 18 And dblcheck.Contains(l) Then
|
||||
If l.Trim.Length >= 18 And dblcheck.Contains(l.Trim) Then
|
||||
MsgBox("Doppelte MRN !: " & l)
|
||||
Me.Cursor = Cursors.Default
|
||||
Exit Sub
|
||||
End If
|
||||
If Not IsValidMRN(l) Then
|
||||
If Not IsValidMRN(l.Trim) Then
|
||||
MsgBox("Ungültige MRN (Format): " & l)
|
||||
Me.Cursor = Cursors.Default
|
||||
Exit Sub
|
||||
End If
|
||||
dblcheck &= l
|
||||
dblcheck &= l.Trim
|
||||
End If
|
||||
Next
|
||||
|
||||
@@ -111,7 +111,7 @@ Public Class usrCntlATLAS_EXGestellung
|
||||
For Each l In rtbMRN.Lines
|
||||
If l.Trim <> "" Then
|
||||
|
||||
If Not sendEXP_MRN(l, sbAbgangZollstelle._value, cnt, exg_list) Then
|
||||
If Not sendEXP_MRN(l.Trim, sbAbgangZollstelle._value, cnt, exg_list) Then
|
||||
MsgBox("Sendefehler bei " & l)
|
||||
err = True
|
||||
End If
|
||||
|
||||
Reference in New Issue
Block a user