RequestInvoices.getCancellationHistory Method
It returns an ArrayList containing ArrayLists of the canellation history. Each item of the ArrayList contains the following items:
invoiceMark, cancellationMark, cancellationDate
in that order.
ArrayList cancelHistory = rqd.getcancellationHistory(); // get the cancellation history foreach (var entie in cancelHistory) { int invoiceMark = entie(0); double cancellationMark = entie(1); DateTime cancellationDate = entie(2); }
This language is not supported or no code example is available.
Dim cancelHistory As ArrayList = rqd.getcancellationHistory() ' get the cancellation history For Each entie In cancelHistory Dim invoiceMark As Integer = entie(0) Dim cancellationMark As Double = entie(1) Dim cancellationDate As Date = entie(2) Next
This language is not supported or no code example is available.