Aktweiterleitung WO, etc.

This commit is contained in:
2026-03-30 11:02:06 +02:00
parent 974e223d4a
commit 2d80c93710
2 changed files with 33 additions and 3 deletions

View File

@@ -330,8 +330,15 @@ Public Class frmAvisoWeiterleiten
Next
End If
ElseIf sender Is Button2 Then
addBtn(flpFirma, "W", "FO_WIHD", "KÖRFEZ 61", True, "VERAG")
addBtn(flpFirma, "W", "WO_MERIS", "MERIS", True, "VERAG")
Dim dt As DataTable = SQL.loadDgvBySql("SELECT grz_Grenzstelle, grz_Bezeichnung, grz_Firma FROM tblGrenzstelle WHERE grz_FreigabeWeb = 1 and grz_Firma is not null order by grz_Grenzstelle", "AVISO")
If dt IsNot Nothing Then
For Each t In dt.Rows
addBtn(flpFirma, "W", t("grz_Grenzstelle"), t("grz_Bezeichnung"), True, t("grz_Firma"))
Next
End If
End If