kundenzollvm

This commit is contained in:
2022-10-10 11:08:01 +02:00
parent d24e659cd5
commit 4881f4d6b2
5 changed files with 137 additions and 7 deletions

View File

@@ -436,7 +436,7 @@ Partial Class frmMain
Me.cntxtMDM.Name = "ContextMenuStrip1" Me.cntxtMDM.Name = "ContextMenuStrip1"
Me.cntxtMDM.ShowImageMargin = False Me.cntxtMDM.ShowImageMargin = False
Me.cntxtMDM.ShowItemToolTips = False Me.cntxtMDM.ShowItemToolTips = False
Me.cntxtMDM.Size = New System.Drawing.Size(200, 122) Me.cntxtMDM.Size = New System.Drawing.Size(200, 100)
' '
'KartenverwaltungToolStripMenuItem 'KartenverwaltungToolStripMenuItem
' '
@@ -664,24 +664,24 @@ Partial Class frmMain
'ToolStripSeparator4 'ToolStripSeparator4
' '
Me.ToolStripSeparator4.Name = "ToolStripSeparator4" Me.ToolStripSeparator4.Name = "ToolStripSeparator4"
Me.ToolStripSeparator4.Size = New System.Drawing.Size(154, 6) Me.ToolStripSeparator4.Size = New System.Drawing.Size(177, 6)
' '
'NeuesPasswortToolStripMenuItem 'NeuesPasswortToolStripMenuItem
' '
Me.NeuesPasswortToolStripMenuItem.Name = "NeuesPasswortToolStripMenuItem" Me.NeuesPasswortToolStripMenuItem.Name = "NeuesPasswortToolStripMenuItem"
Me.NeuesPasswortToolStripMenuItem.Size = New System.Drawing.Size(157, 22) Me.NeuesPasswortToolStripMenuItem.Size = New System.Drawing.Size(180, 22)
Me.NeuesPasswortToolStripMenuItem.Text = "Neues Passwort" Me.NeuesPasswortToolStripMenuItem.Text = "Neues Passwort"
' '
'UpdateToolStripMenuItem 'UpdateToolStripMenuItem
' '
Me.UpdateToolStripMenuItem.Name = "UpdateToolStripMenuItem" Me.UpdateToolStripMenuItem.Name = "UpdateToolStripMenuItem"
Me.UpdateToolStripMenuItem.Size = New System.Drawing.Size(157, 22) Me.UpdateToolStripMenuItem.Size = New System.Drawing.Size(180, 22)
Me.UpdateToolStripMenuItem.Text = "Update" Me.UpdateToolStripMenuItem.Text = "Update"
' '
'TESTToolStripMenuItem 'TESTToolStripMenuItem
' '
Me.TESTToolStripMenuItem.Name = "TESTToolStripMenuItem" Me.TESTToolStripMenuItem.Name = "TESTToolStripMenuItem"
Me.TESTToolStripMenuItem.Size = New System.Drawing.Size(157, 22) Me.TESTToolStripMenuItem.Size = New System.Drawing.Size(180, 22)
Me.TESTToolStripMenuItem.Text = "TEST" Me.TESTToolStripMenuItem.Text = "TEST"
Me.TESTToolStripMenuItem.Visible = False Me.TESTToolStripMenuItem.Visible = False
' '
@@ -697,7 +697,7 @@ Partial Class frmMain
'ToolStripSeparator3 'ToolStripSeparator3
' '
Me.ToolStripSeparator3.Name = "ToolStripSeparator3" Me.ToolStripSeparator3.Name = "ToolStripSeparator3"
Me.ToolStripSeparator3.Size = New System.Drawing.Size(57, 6) Me.ToolStripSeparator3.Size = New System.Drawing.Size(177, 6)
' '
'StatistikToolStripMenuItem 'StatistikToolStripMenuItem
' '

View File

@@ -937,7 +937,9 @@ Public Class frmMain
End If End If
End Sub End Sub
Private Sub MenuStrip1_ItemClicked(sender As Object, e As ToolStripItemClickedEventArgs) Handles MenuStrip1.ItemClicked
End Sub
End Class End Class
Public Class MyRenderer Public Class MyRenderer

View File

@@ -127,7 +127,8 @@ Public Class usrCntlKundenZollVollmachten
.kdvm_erhalten = False, .kdvm_erhalten = False,
.kdvm_archiviert = False, .kdvm_archiviert = False,
.kdvm_datenarchivId = -1, .kdvm_datenarchivId = -1,
.kdvm_erhalten_Datum = Now.ToShortDateString .kdvm_erhalten_Datum = Now.ToShortDateString,
.kdvm_emailId = -1
} }
vollmacht.kdvm_gueltig_bis = txtGueltigBis vollmacht.kdvm_gueltig_bis = txtGueltigBis

View File

@@ -0,0 +1,126 @@
Imports System.Data.SqlClient
Imports System.Reflection
Public Class cNCTSRouten
Property nctsr_id As Integer
Property nctsr_von As Object = Nothing
Property nctsr_von_region As Object = Nothing
Property nctsr_nach As Object = Nothing
Property nctsr_dauer_in_tagen As Integer
Property nctsr_route As Object = Nothing
Property nctsr_transportmittel As Object = Nothing
Public hasEntry = False
Dim SQL As New SQL
Sub New(nctsr_id)
Me.nctsr_id = nctsr_id
LOAD()
End Sub
Sub New()
End Sub
Function getParameterList() As List(Of VERAG_PROG_ALLGEMEIN.SQLVariable)
Dim list As New List(Of VERAG_PROG_ALLGEMEIN.SQLVariable)
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("nctsr_id", nctsr_id,, True))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("nctsr_von", nctsr_von))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("nctsr_von_region", nctsr_von_region))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("nctsr_nach", nctsr_nach))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("nctsr_dauer_in_tagen", nctsr_dauer_in_tagen))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("nctsr_route", nctsr_route))
list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("nctsr_transportmittel", nctsr_transportmittel))
Return list
End Function
Public Function SAVE() As Boolean
Dim list As List(Of VERAG_PROG_ALLGEMEIN.SQLVariable) = getParameterList()
Dim sqlstr = " BEGIN TRAN IF EXISTS(SELECT * FROM tblNTCSRouten WHERE nctsr_id=@nctsr_id) " &
" BEGIN " & getUpdateCmd() & " END " &
" Else " &
" BEGIN " & getInsertCmd() & " END " &
" commit tran "
Return SQL.doSQLVarList(sqlstr, "FMZOLL", , list)
End Function
Public Sub LOAD()
Try
hasEntry = False
Using conn As SqlConnection = SQL.GetNewOpenConnectionFMZOLL()
Using cmd As New SqlCommand("SELECT * FROM tblNTCSRouten WHERE nctsr_id=@nctsr_id ", conn)
cmd.Parameters.AddWithValue("@nctsr_id", nctsr_id)
Dim dr = cmd.ExecuteReader()
If dr.Read Then
For Each li In getParameterList()
Dim propInfo As PropertyInfo = Me.GetType.GetProperty(li.Scalarvariable)
If dr.Item(li.Text) Is DBNull.Value Then
propInfo.SetValue(Me, Nothing)
Else
propInfo.SetValue(Me, dr.Item(li.Text))
End If
Next
hasEntry = True
End If
dr.Close()
End Using
End Using
Catch ex As Exception
MsgBox("Fehler in der Funktion '" & System.Reflection.MethodInfo.GetCurrentMethod.Name & "'" & vbNewLine & vbNewLine & ex.Message & vbNewLine & vbNewLine & ex.StackTrace)
End Try
End Sub
Public Function getUpdateCmd() As String
Try
Dim list As List(Of VERAG_PROG_ALLGEMEIN.SQLVariable) = getParameterList()
Dim str As String = ""
For Each i In list
If Not i.isPrimaryParam Then
str &= "[" & i.Text & "] = @" & i.Scalarvariable & "," '.Replace("-", "").Replace(" ", "") & ","
End If
Next
str = str.Substring(0, str.Length - 1) 'wg. ','
Return (" UPDATE [tblNTCSRouten] SET " & str & " WHERE nctsr_id=@nctsr_id ")
Catch ex As Exception
MsgBox("Fehler in der Funktion '" & System.Reflection.MethodInfo.GetCurrentMethod.Name & "'" & vbNewLine & vbNewLine & ex.Message & vbNewLine & vbNewLine & ex.StackTrace)
End Try
Return ""
End Function
Public Function getInsertCmd() As String
Try
Dim list As List(Of VERAG_PROG_ALLGEMEIN.SQLVariable) = getParameterList()
Dim str As String = ""
Dim values As String = ""
For Each i In list
If Not i.isPrimaryParam Then
str &= "[" & i.Text & "],"
values &= "@" & i.Scalarvariable & "," '.Replace("-", "").Replace(" ", "") & ","
End If
Next
str = str.Substring(0, str.Length - 1) 'wg. ','
values = values.Substring(0, values.Length - 1) 'wg. ','
Return (" INSERT INTO tblNTCSRouten (" & str & ") VALUES(" & values & ") ")
Catch ex As Exception
MsgBox("Fehler in der Funktion '" & System.Reflection.MethodInfo.GetCurrentMethod.Name & "'" & vbNewLine & vbNewLine & ex.Message & vbNewLine & vbNewLine & ex.StackTrace)
End Try
Return ""
End Function
End Class

View File

@@ -350,6 +350,7 @@
<Compile Include="Classes\cMessangerListender.vb" /> <Compile Include="Classes\cMessangerListender.vb" />
<Compile Include="Classes\cMessenger.vb" /> <Compile Include="Classes\cMessenger.vb" />
<Compile Include="Classes\cNCTSGestellungsadressen.vb" /> <Compile Include="Classes\cNCTSGestellungsadressen.vb" />
<Compile Include="Classes\cNCTSRouten.vb" />
<Compile Include="Classes\cNCTS_TR.vb" /> <Compile Include="Classes\cNCTS_TR.vb" />
<Compile Include="Classes\cNCTS_TR_Nachrichten.vb" /> <Compile Include="Classes\cNCTS_TR_Nachrichten.vb" />
<Compile Include="Classes\cOffene_Posten.vb" /> <Compile Include="Classes\cOffene_Posten.vb" />