ustva, etc.
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
Imports System.Globalization
|
Imports System.Globalization
|
||||||
Imports System.IO
|
Imports System.IO
|
||||||
Imports System.Reflection
|
Imports System.Reflection
|
||||||
|
Imports System.Web.UI.WebControls.Expressions
|
||||||
Imports System.Windows.Documents
|
Imports System.Windows.Documents
|
||||||
Imports itextsharp.text.pdf
|
Imports itextsharp.text.pdf
|
||||||
Imports Microsoft.Office.Interop
|
Imports Microsoft.Office.Interop
|
||||||
@@ -4781,193 +4782,87 @@ Public Class frmMDM_USTVAntrag
|
|||||||
|
|
||||||
Private Sub getCode(ByRef AntragLand As String, ByRef typ As String, ByRef Code As Integer, ByRef SubCode As String, Optional Portal As String = "")
|
Private Sub getCode(ByRef AntragLand As String, ByRef typ As String, ByRef Code As Integer, ByRef SubCode As String, Optional Portal As String = "")
|
||||||
|
|
||||||
If Portal = "RO" Then
|
Code = 0
|
||||||
Select Case typ
|
SubCode = ""
|
||||||
Case "diesel"
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1.2"
|
|
||||||
Case "maut"
|
|
||||||
Code = 4
|
|
||||||
SubCode = "4.1"
|
|
||||||
Case "zubehör"
|
|
||||||
Code = 3
|
|
||||||
SubCode = "3.1.5"
|
|
||||||
Case "parkplatz"
|
|
||||||
Code = 3
|
|
||||||
SubCode = "3.1.4"
|
|
||||||
Case "übernachtung"
|
|
||||||
Code = 6
|
|
||||||
SubCode = "6.5"
|
|
||||||
End Select
|
|
||||||
Exit Sub
|
|
||||||
End If
|
|
||||||
|
|
||||||
|
'-------------------------------------------------------
|
||||||
|
' Portale
|
||||||
|
'-------------------------------------------------------
|
||||||
|
Select Case Portal
|
||||||
|
Case "RO"
|
||||||
|
Select Case typ
|
||||||
|
Case "diesel" : Code = 1 : SubCode = "1.1.2"
|
||||||
|
Case "maut" : Code = 4 : SubCode = "4.1"
|
||||||
|
Case "zubehör" : Code = 3 : SubCode = "3.1.5"
|
||||||
|
Case "parkplatz" : Code = 3 : SubCode = "3.1.4"
|
||||||
|
Case "übernachtung" : Code = 6 : SubCode = "6.5"
|
||||||
|
End Select
|
||||||
|
|
||||||
If Portal = "DE" Then
|
If {"DE", "CZ", "LU"}.Contains(AntragLand) Then
|
||||||
Select Case typ
|
SubCode = ""
|
||||||
Case "diesel"
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1.2"
|
|
||||||
Case "maut"
|
|
||||||
Code = 4
|
|
||||||
SubCode = "4.1"
|
|
||||||
Case "zubehör"
|
|
||||||
Code = 3
|
|
||||||
SubCode = "3.1.3"
|
|
||||||
Case "parkplatz"
|
|
||||||
Code = 3
|
|
||||||
SubCode = "3.1.4"
|
|
||||||
Case "gas"
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1.3"
|
|
||||||
Case "übernachtung"
|
|
||||||
Code = 6
|
|
||||||
SubCode = "6.1"
|
|
||||||
End Select
|
|
||||||
Exit Sub
|
|
||||||
End If
|
|
||||||
|
|
||||||
|
|
||||||
Select Case AntragLand
|
|
||||||
|
|
||||||
Case "AT"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.2.7"
|
|
||||||
End If
|
End If
|
||||||
If typ = "maut" Then
|
Exit Sub
|
||||||
Code = 4
|
|
||||||
SubCode = "4.1"
|
Case "DE"
|
||||||
End If
|
Select Case typ
|
||||||
If typ = "parkplatz" Then
|
Case "diesel" : Code = 1 : SubCode = "1.1.2"
|
||||||
|
Case "maut" : Code = 4 : SubCode = "4.1"
|
||||||
|
Case "zubehör" : Code = 3 : SubCode = "3.1.3"
|
||||||
|
Case "parkplatz" : Code = 3 : SubCode = "3.1.4"
|
||||||
|
Case "gas" : Code = 1 : SubCode = "1.1.3"
|
||||||
|
Case "übernachtung" : Code = 6 : SubCode = "6.1"
|
||||||
|
End Select
|
||||||
|
Exit Sub
|
||||||
|
End Select
|
||||||
|
|
||||||
|
'-------------------------------------------------------
|
||||||
|
' Standardwerte
|
||||||
|
'-------------------------------------------------------
|
||||||
|
Select Case typ
|
||||||
|
Case "diesel"
|
||||||
|
Code = 1
|
||||||
|
|
||||||
|
Select Case AntragLand
|
||||||
|
Case "AT" : SubCode = "1.2.7"
|
||||||
|
Case "BE" : SubCode = "1.13"
|
||||||
|
Case "ES" : SubCode = "1.14"
|
||||||
|
Case "SI", "DK" : SubCode = "1.1"
|
||||||
|
Case "PL", "FR", "IT", "HU", "BG", "IE", "PT" : SubCode = "1.1.2"
|
||||||
|
Case "DE", "CZ", "LU" : SubCode = ""
|
||||||
|
End Select
|
||||||
|
|
||||||
|
Case "maut"
|
||||||
|
Code = 4
|
||||||
|
|
||||||
|
Select Case AntragLand
|
||||||
|
Case "PL" : SubCode = "4.2.2"
|
||||||
|
Case "SE" : SubCode = "5"
|
||||||
|
Case "AT", "SI", "HU", "BG", "IE", "PT" : SubCode = "4.1"
|
||||||
|
Case "DE", "CZ", "LU" : SubCode = ""
|
||||||
|
End Select
|
||||||
|
|
||||||
|
Case "parkplatz"
|
||||||
|
If AntragLand = "AT" Then
|
||||||
Code = 3
|
Code = 3
|
||||||
SubCode = "3.1"
|
SubCode = "3.1"
|
||||||
End If
|
End If
|
||||||
If typ = "zubehör" Then
|
|
||||||
|
Case "zubehör"
|
||||||
|
If AntragLand = "AT" Then
|
||||||
Code = 3
|
Code = 3
|
||||||
SubCode = "1.3"
|
SubCode = "1.3"
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Case "BE"
|
Case "rest"
|
||||||
If typ = "diesel" Then
|
If AntragLand = "BE" Then
|
||||||
Code = 1
|
|
||||||
SubCode = "1.13"
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
|
|
||||||
If typ = "rest" Then
|
|
||||||
Code = 3
|
Code = 3
|
||||||
SubCode = "3.13"
|
SubCode = "3.13"
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Case "ES"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.14"
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case "SI"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1"
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = "4.1"
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case "PL"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1.2"
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = "4.2.2"
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case "FR", "IT"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1.2"
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case "HU"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1.2"
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = "4.1"
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case "DK"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1"
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case "SE"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = "5"
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case "DE", "CZ", "LU"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case "BG", "IE", "PT"
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = "1.1.2"
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = "4.1"
|
|
||||||
End If
|
|
||||||
|
|
||||||
Case Else
|
|
||||||
|
|
||||||
If typ = "diesel" Then
|
|
||||||
Code = 1
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
If typ = "maut" Then
|
|
||||||
Code = 4
|
|
||||||
SubCode = ""
|
|
||||||
End If
|
|
||||||
|
|
||||||
End Select
|
End Select
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user