Timas Korrektur

This commit is contained in:
2023-09-26 13:49:00 +02:00
parent 791b0ad4be
commit 1bbc91e993
5 changed files with 19 additions and 18 deletions

View File

@@ -81,7 +81,7 @@ Partial Class frmMitarbDetails
Me.rtfInfoTimas = New System.Windows.Forms.RichTextBox() Me.rtfInfoTimas = New System.Windows.Forms.RichTextBox()
Me.btngetInfo = New System.Windows.Forms.Button() Me.btngetInfo = New System.Windows.Forms.Button()
Me.cbxTimasAngelegt = New System.Windows.Forms.CheckBox() Me.cbxTimasAngelegt = New System.Windows.Forms.CheckBox()
Me.txtPersonalNr = New System.Windows.Forms.TextBox() Me.txtLohnNr = New System.Windows.Forms.TextBox()
Me.btnMAanlegen = New System.Windows.Forms.Button() Me.btnMAanlegen = New System.Windows.Forms.Button()
Me.TabPage7 = New System.Windows.Forms.TabPage() Me.TabPage7 = New System.Windows.Forms.TabPage()
Me.lbSprachen = New VERAG_PROG_ALLGEMEIN.MyListBox() Me.lbSprachen = New VERAG_PROG_ALLGEMEIN.MyListBox()
@@ -810,7 +810,7 @@ Partial Class frmMitarbDetails
Me.TabPage6.Controls.Add(Me.rtfInfoTimas) Me.TabPage6.Controls.Add(Me.rtfInfoTimas)
Me.TabPage6.Controls.Add(Me.btngetInfo) Me.TabPage6.Controls.Add(Me.btngetInfo)
Me.TabPage6.Controls.Add(Me.cbxTimasAngelegt) Me.TabPage6.Controls.Add(Me.cbxTimasAngelegt)
Me.TabPage6.Controls.Add(Me.txtPersonalNr) Me.TabPage6.Controls.Add(Me.txtLohnNr)
Me.TabPage6.Controls.Add(Me.btnMAanlegen) Me.TabPage6.Controls.Add(Me.btnMAanlegen)
Me.TabPage6.Location = New System.Drawing.Point(4, 22) Me.TabPage6.Location = New System.Drawing.Point(4, 22)
Me.TabPage6.Name = "TabPage6" Me.TabPage6.Name = "TabPage6"
@@ -878,13 +878,13 @@ Partial Class frmMitarbDetails
Me.cbxTimasAngelegt.Text = "Account - PersonalNr (Lohnverr.)" Me.cbxTimasAngelegt.Text = "Account - PersonalNr (Lohnverr.)"
Me.cbxTimasAngelegt.UseVisualStyleBackColor = True Me.cbxTimasAngelegt.UseVisualStyleBackColor = True
' '
'txtPersonalNr 'txtLohnNr
' '
Me.txtPersonalNr.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.txtLohnNr.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtPersonalNr.Location = New System.Drawing.Point(189, 3) Me.txtLohnNr.Location = New System.Drawing.Point(189, 3)
Me.txtPersonalNr.Name = "txtPersonalNr" Me.txtLohnNr.Name = "txtLohnNr"
Me.txtPersonalNr.Size = New System.Drawing.Size(47, 20) Me.txtLohnNr.Size = New System.Drawing.Size(47, 20)
Me.txtPersonalNr.TabIndex = 114 Me.txtLohnNr.TabIndex = 114
' '
'btnMAanlegen 'btnMAanlegen
' '
@@ -2472,7 +2472,7 @@ Partial Class frmMitarbDetails
Friend WithEvents txtTelNr As TextBox Friend WithEvents txtTelNr As TextBox
Friend WithEvents TabPage6 As TabPage Friend WithEvents TabPage6 As TabPage
Friend WithEvents cbxTimasAngelegt As CheckBox Friend WithEvents cbxTimasAngelegt As CheckBox
Friend WithEvents txtPersonalNr As TextBox Friend WithEvents txtLohnNr As TextBox
Friend WithEvents btnMAanlegen As Button Friend WithEvents btnMAanlegen As Button
Friend WithEvents btngetInfo As Button Friend WithEvents btngetInfo As Button
Friend WithEvents rtfInfoTimas As RichTextBox Friend WithEvents rtfInfoTimas As RichTextBox

View File

@@ -290,7 +290,7 @@ Public Class frmMitarbDetails
txtTelotecSB.Text = mitarbeiter.mit_TELOTEC_SB txtTelotecSB.Text = mitarbeiter.mit_TELOTEC_SB
txtCSUser.Text = mitarbeiter.mit_CSuser txtCSUser.Text = mitarbeiter.mit_CSuser
txtCSPW.Text = mitarbeiter.mit_CSpwd txtCSPW.Text = mitarbeiter.mit_CSpwd
txtPersonalNr.Text = mitarbeiter.mit_PersonalNr txtLohnNr.Text = mitarbeiter.mit_PersonalNr
txtTelNr.Text = mitarbeiter.mit_telefonnr txtTelNr.Text = mitarbeiter.mit_telefonnr
cboALIASDomain.changeItem(mitarbeiter.mit_AliasAD_Domain) cboALIASDomain.changeItem(mitarbeiter.mit_AliasAD_Domain)
@@ -583,7 +583,7 @@ Public Class frmMitarbDetails
mitarbeiter.mit_teamId = If(cboTeam._value = "", Nothing, cboTeam._value) mitarbeiter.mit_teamId = If(cboTeam._value = "", Nothing, cboTeam._value)
mitarbeiter.mit_CSuser = txtCSUser.Text mitarbeiter.mit_CSuser = txtCSUser.Text
mitarbeiter.mit_CSpwd = txtCSPW.Text mitarbeiter.mit_CSpwd = txtCSPW.Text
mitarbeiter.mit_PersonalNr = txtPersonalNr.Text mitarbeiter.mit_PersonalNr = txtLohnNr.Text
mitarbeiter.mit_telefonnr = txtTelNr.Text mitarbeiter.mit_telefonnr = txtTelNr.Text
@@ -902,7 +902,7 @@ Public Class frmMitarbDetails
btnMAanlegen.Visible = Not cbxTimasAngelegt.Checked btnMAanlegen.Visible = Not cbxTimasAngelegt.Checked
txtPersonalNr.Enabled = Not cbxTimasAngelegt.Checked txtLohnNr.Enabled = Not cbxTimasAngelegt.Checked
dgvData.Visible = Not cbxTimasAngelegt.Checked dgvData.Visible = Not cbxTimasAngelegt.Checked
TabControl1.Visible = Not cbxTimasAngelegt.Checked TabControl1.Visible = Not cbxTimasAngelegt.Checked
rtfInfoTimas.Visible = cbxTimasAngelegt.Checked rtfInfoTimas.Visible = cbxTimasAngelegt.Checked
@@ -1190,7 +1190,7 @@ Public Class frmMitarbDetails
Private Sub cbxTimasAngelegt_CheckedChanged(sender As Object, e As EventArgs) Handles cbxTimasAngelegt.CheckedChanged Private Sub cbxTimasAngelegt_CheckedChanged(sender As Object, e As EventArgs) Handles cbxTimasAngelegt.CheckedChanged
btnMAanlegen.Visible = Not cbxTimasAngelegt.Checked btnMAanlegen.Visible = Not cbxTimasAngelegt.Checked
txtPersonalNr.Enabled = Not cbxTimasAngelegt.Checked txtLohnNr.Enabled = Not cbxTimasAngelegt.Checked
dgvData.Visible = Not cbxTimasAngelegt.Checked dgvData.Visible = Not cbxTimasAngelegt.Checked
rtfInfoTimas.Visible = cbxTimasAngelegt.Checked rtfInfoTimas.Visible = cbxTimasAngelegt.Checked
btngetInfo.Visible = cbxTimasAngelegt.Checked btngetInfo.Visible = cbxTimasAngelegt.Checked

View File

@@ -145,11 +145,12 @@ Public Class frmMitarbTimas
emp.street = txtStrasse.Text emp.street = txtStrasse.Text
emp.zipcode = txtPlz.Text emp.zipcode = txtPlz.Text
emp.street = txtOrt.Text emp.street = txtOrt.Text
emp.pnr1 = txtLohn.Text
emp.phone1 = txtTelNr.Text & " " & txtDurchwahl.Text emp.phone1 = txtTelNr.Text & " " & txtDurchwahl.Text
emp.email = txtEmail.Text emp.email = txtEmail.Text
emp.phone2 = txtMobiltel.Text emp.phone2 = txtMobiltel.Text
emp.info = txtInfo.Text emp.info = txtInfo.Text
emp.card = txtCard.Text
If cbxEinsteigsDat.Checked Then emp.entryDate = datEinstiegsdatum.Text Else emp.entryDate = "null" If cbxEinsteigsDat.Checked Then emp.entryDate = datEinstiegsdatum.Text Else emp.entryDate = "null"

View File

@@ -381,7 +381,7 @@ Public Class usrCntlMitarbeiter
Private Sub dgvIMEX_CellContentClick(sender As Object, e As DataGridViewCellEventArgs) Handles dgvIMEX.CellDoubleClick, dgvUNISPED.CellDoubleClick, dgvAMBAR.CellDoubleClick, dgvVERAG.CellDoubleClick, dgvATILLA.CellDoubleClick, dgvFRONTOFFICE.CellDoubleClick, dgvVERIMEX.CellDoubleClick Private Sub dgvIMEX_CellContentClick(sender As Object, e As DataGridViewCellEventArgs) Handles dgvIMEX.CellDoubleClick, dgvUNISPED.CellDoubleClick, dgvAMBAR.CellDoubleClick, dgvVERAG.CellDoubleClick, dgvATILLA.CellDoubleClick, dgvFRONTOFFICE.CellDoubleClick, dgvVERIMEX.CellDoubleClick
Me.Cursor = Cursors.WaitCursor Me.Cursor = Cursors.Default
Dim frmMitarbDetails As New frmMitarbDetails Dim frmMitarbDetails As New frmMitarbDetails
frmMitarbDetails.mid = sender.CurrentRow.Cells(0).Value frmMitarbDetails.mid = sender.CurrentRow.Cells(0).Value
frmMitarbDetails.Show(Me) frmMitarbDetails.Show(Me)

View File

@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben: ' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.2.2.0")> <Assembly: AssemblyVersion("1.2.2.1")>
<Assembly: AssemblyFileVersion("1.2.2.0")> <Assembly: AssemblyFileVersion("1.2.2.1")>