RequestVatInfo.getVatInfo Method
Returns a data table containing the MARKS, the VAT Field and the corresponding amount.
The returned data are those that will be included in the monthly VAT document of the entity, so the end user will know the document will be pre-filled.
DataTable dt = rvi.getVatInfo(); DataGridView1.DataSource = dt; // Load DataTable directly to a DataGridView For (var i = 0; i <= dt.Rows.Count - 1; i++) // GO THROUGH ALL OF THE DATATABLE'S ROWS { int index = dt.Rows(i).Item("index"); string mark = dt.Rows(i).Item("mark"); DateTime issueDate = dt.Rows(i).Item("issueDate); double field301 = dt.Rows(i).Item("301"); double field331 = dt.Rows(i).Item("331"); ... double field422 = dt.Rows(i).Item("422"); double field423 = dt.Rows(i).Item("423"); }
This language is not supported or no code example is available.
Dim dt As DataTable = rvi.getVatInfo() DataGridView1.DataSource = dt 'Load DataTable directly to a DataGridView For i = 0 To dt.Rows.Count - 1 'GO THROUGH ALL OF THE DATATABLE'S ROWS DataGridView1.DataSource = dt Dim index As Integer = dt.Rows(i).Item("index") Dim mark As String = dt.Rows(i).Item("mark") Dim issueDate As DateTime = dt.Rows(i).Item("issueDate") Dim field301 As Double = dt.Rows(i).Item("301") Dim field331 As Double = dt.Rows(i).Item("331") ... Dim field422 As Double = dt.Rows(i).Item("422") Dim field423 As Double = dt.Rows(i).Item("423") Next
This language is not supported or no code example is available.