MDM, IDS, etc.

This commit is contained in:
2025-01-21 16:50:28 +01:00
parent 36e3b8c492
commit 7450da7a7a
5 changed files with 52 additions and 16 deletions

View File

@@ -2595,6 +2595,26 @@ Public Class usrCntlMDMAuswertungen
End If
End Sub
Private Sub cbxDateMautbericht_SelectedValueChanged(sender As Object, e As EventArgs) Handles cbxDateMautbericht.SelectedValueChanged
With MyDatagridview1
.Columns.Clear()
.SET_SQL("SELECT [Datenquelle] as Lieferant,sum([Net Amount]) as Netto,sum([VAT Amount]) as VAT,sum([Total Amount]) as Brutto
FROM [VERAG].[dbo].[tblMautbericht]
where cast([Billingdate] as date) = '" & cbxDateMautbericht._value & "'
group by [Datenquelle]", "FMZOLL")
.LOAD()
End With
End Sub
End Class