Aktengang für NKN (45minuten)
This commit is contained in:
@@ -338,6 +338,7 @@ Public Class frmMitarbeitersuche
|
||||
Case Else
|
||||
timestp = timestp.AddMinutes(1) 'NICHT ERLAUBT
|
||||
End Select
|
||||
Else
|
||||
timestp = timestp.AddMinutes(1) 'NICHT ERLAUBT
|
||||
End If
|
||||
|
||||
@@ -350,7 +351,23 @@ Public Class frmMitarbeitersuche
|
||||
End If
|
||||
|
||||
ElseIf art = "akten" Then
|
||||
Dim aktengang As DateTime = Now().AddMinutes(-10)
|
||||
|
||||
Dim minutesBeforeStart As Integer = 1
|
||||
|
||||
If VERAG_PROG_ALLGEMEIN.cAllgemein.MITARBEITER.mit_niederlassung <> "" Then
|
||||
Select Case VERAG_PROG_ALLGEMEIN.cAllgemein.NIEDERLASSUNG
|
||||
Case "SUB" : minutesBeforeStart = 10
|
||||
Case "NKN" : minutesBeforeStart = 45
|
||||
Case Else
|
||||
minutesBeforeStart = 1 'NICHT ERLAUBT
|
||||
End Select
|
||||
Else
|
||||
|
||||
minutesBeforeStart = 1 'NICHT ERLAUBT
|
||||
End If
|
||||
|
||||
|
||||
Dim aktengang As DateTime = Now().AddMinutes(-minutesBeforeStart)
|
||||
Dim askPost As MsgBoxResult = MsgBox("Aktengang für " & VERAG_PROG_ALLGEMEIN.cAllgemein.USRKURZNAME & " eintragen?" & vbNewLine & aktengang.ToString(), vbYesNo)
|
||||
If askPost = vbYes Then
|
||||
Dim info
|
||||
@@ -360,7 +377,7 @@ Public Class frmMitarbeitersuche
|
||||
Dim isOnline = timas.getTimeEntries(cAllgemein.MITARBEITER.mit_timasId, Nothing, timeEntryExisting)
|
||||
If Not timeEntryExisting AndAlso Not isOnline Then
|
||||
timas.setTimeEntry(cAllgemein.MITARBEITER, timestp, info, "in", 10) 'Start 10 Aktengang
|
||||
timestp = timestp.AddMinutes(10)
|
||||
timestp = timestp.AddMinutes(minutesBeforeStart)
|
||||
timas.setTimeEntry(cAllgemein.MITARBEITER, timestp, info, "out", 10) 'Ende 10 Aktengang
|
||||
timestp = timestp.AddMinutes(1)
|
||||
timas.setTimeEntry(cAllgemein.MITARBEITER, timestp, info, "in", 0) ' Start
|
||||
|
||||
Reference in New Issue
Block a user