This commit is contained in:
2025-05-28 16:56:45 +02:00
parent ba4883ee14
commit ae65c46fdd
7 changed files with 80 additions and 21 deletions

View File

@@ -3337,19 +3337,23 @@ Public Class frmMDM_USTVAntrag
Next
Dim f As New SDL.frmAbrechnungsMaskeEinzeln(item.Name, hasVZ)
f.Show(Me)
If f.ShowDialog(Me) = DialogResult.Cancel Then
init()
End If
Else
Dim hasVZ = IIf(item.Name.Contains("_VZ"), True, False)
Dim f As New SDL.frmAbrechnungsMaskeEinzeln(USTV_ANTRAG.FilialenNr, USTV_ANTRAG.AbfertigungsNr, IIf(USTV_ANTRAG.UStVAn_ErstattungsbetragEUR >= 0, "AG", "AR"), hasVZ)
f.Show(Me)
If f.ShowDialog(Me) = DialogResult.Cancel Then
init()
End If
End If
End If
End If
End Sub