div. Änderungen

This commit is contained in:
2026-04-21 13:21:15 +02:00
parent b846a8e00c
commit f1bd09bdb7
3 changed files with 21 additions and 11 deletions

View File

@@ -1192,8 +1192,17 @@ Anzeige:
Else
TextHTMLtable &= "<td><b> - </b></td>"
End If
TextHTMLtable &= "<td><b>" & GSPOS.gsp_EH_Anzahl & "</b></td>"
If gs_row IsNot Nothing AndAlso Not IsDBNull(gs_row("gs_gewicht")) AndAlso gs_row("gs_gewicht") <> "" Then
If GSPOS.gsp_EH_Anzahl IsNot Nothing AndAlso IsNumeric(GSPOS.gsp_EH_Anzahl) Then
TextHTMLtable &= "<td><b>" & GSPOS.gsp_EH_Anzahl & "</b></td>"
Else
TextHTMLtable &= "<td><b> - </b></td>"
End If
If gs_row IsNot Nothing AndAlso Not IsDBNull(gs_row("gs_gewicht")) Then
TextHTMLtable &= "<td><b>" & gs_row("gs_gewicht").ToString & "</b></td>"
Else
TextHTMLtable &= "<td><b> - </b></td>"