This commit is contained in:
2021-09-07 08:46:12 +02:00
parent f2f992547d
commit 619a8c26bf
126 changed files with 7156 additions and 2215 deletions

View File

@@ -135,6 +135,11 @@ Public Class cProgramFunctions
Dim SQL As New VERAG_PROG_ALLGEMEIN.SQL
Return SQL.getValueTxtBySql(sqlstr, "FMZOLL")
End Function
Shared Function isEULand(LandKz As String)
Dim sqlstr = "SELECT count(*) FROM [Währungstabelle] where LandKz='" & LandKz & "' and MitgliedslandEU=1"
Dim SQL As New VERAG_PROG_ALLGEMEIN.SQL
Return CBool(SQL.getValueTxtBySql(sqlstr, "FMZOLL"))
End Function
Shared Function getLandBez_fromISO1Land(LandKz As String, Optional returnValue As Object = Nothing)
If LandKz Is Nothing Then Return returnValue