myDATATools.getRecType Method
Record Types are used for the field invoiceLine.RecType.
Public Function getRecType( _
Optional ByVal English As Boolean = False _
) As Dictionary(Of String, Object)
This language is not supported or no code example is available.
Parameters
- English
- bool
Optional. If True, the result in English terms. Default is False
Return Value
Dictionary<string, object>
When invoiceLine.RecType is 2, then invoiceLine.feesPercentCategory and invoiceLine.feesAmount should have values.
When invoiceLine.RecType is 3, then invoiceLine.otherTaxesPercentCategory and invoiceLine.otherTaxesAmount should have values.
When invoiceLine.RecType is 3, then invoiceLine.otherTaxesPercentCategory and invoiceLine.otherTaxesAmount should have values.
myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key"); Dictionary<string, object> result = mdt.getRecType();
This language is not supported or no code example is available.