View Categories

ItemSalesTaxes

6 min read

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTax Record Count. Returns number of records in QuickBooks
    ''' In case of error returns: will return -1
    ''' </summary>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxRecordCount(Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As Integer

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get All ItemSalesTax. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' NOTE: IF YOU HAVE TOO MANY RECORDS GET ItemSalesTax BY DATERANGE
    ''' </summary>
    ''' <param name="ActiveStatus">qbActiveStatus enum. Values (ActiveOnly [DEFAULT], InactiveOnly, All)</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetAllItemSalesTax(Optional ByVal ActiveStatus As qbActiveStatus = qbActiveStatus.All, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTax By ListIDs. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' NOTE: IF YOU HAVE TOO MANY RECORDS GET ItemSalesTax BY DATERANGE
    ''' </summary>
    ''' <param name="ListIDs">ListIDs of the ItemSalesTax. If it is one ListIDs, just add one ListID to the List(Of String)</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxByListIDs(ByVal ListIDs As List(Of String), Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTax By FullNames. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' NOTE: IF YOU HAVE TOO MANY RECORDS GET ItemSalesTax BY DATERANGE
    ''' </summary>
    ''' <param name="FullNames">FullNames of the ItemSalesTax. If it is one FullNames, just add one FullNames to the List(Of String)</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxByFullNames(ByVal FullNames As List(Of String), Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTaxs By DateRange. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' </summary>
    ''' <param name="FromModifiedDate">FromDate</param>
    ''' <param name="ToModifiedDate">ToDate</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxsByDateRange(ByVal FromModifiedDate As DateTime, ByVal ToModifiedDate As DateTime, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTaxs By Name. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' </summary>
    ''' <param name="Name">ItemSalesTax Name</param>
    ''' <param name="MatchCriterion">qbMatchCriterion enum. Values(StartsWith, Contains, EndsWith)</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxByName(ByVal Name As String, ByVal MatchCriterion As qbMatchCriterion, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTaxs By NameRange. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' </summary>
    ''' <param name="FromName">FromName value</param>
    ''' <param name="ToName">ToName value.</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxByNameRange(ByVal FromName As String, ByVal ToName As String, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTaxBy Class ListIDs. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' </summary>
    ''' <param name="ListIDs">Entities ListIDs</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
 Public Function GetItemSalesTaxByClassListIDs(ByVal ListIDs As List(Of String), Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)


    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTaxBy Class FullNames. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' </summary>
    ''' <param name="FullNames">Entities FullNames</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxByClassFullNames(ByVal FullNames As List(Of String), Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTaxBy Class ListIDWithChildren. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' </summary>
    ''' <param name="ListIDWithChildren">Class ListIDWithChildren</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxByClassListIDWithChildren(ByVal ListIDWithChildren As String, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' QuickBooks connection needs to be open first.
    ''' Get ItemSalesTaxBy Class FullNameWithChildren. Returns List(Of ItemSalesTax)
    ''' In case of error returns: new List(Of ItemSalesTax)
    ''' </summary>
    ''' <param name="FullNameWithChildren">Class FullNameWithChildren</param>
    ''' <param name="MaxReturned">max number of records to get</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function GetItemSalesTaxByClassFullNameWithChildren(ByVal FullNameWithChildren As String, Optional ByVal MaxReturned As Integer = 0, Optional ByRef errorMsg As String = "") As List(Of ItemSalesTax)

    ''' <summary>
    ''' It will delete the record from QuickBooks.
    ''' Once deleted, there is no way to retrieve
    ''' </summary>
    ''' <param name="ListID">to add new records to QB set ListID to a temporal one</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function DeleteItemSalesTaxFromQuickBooksByListID(ByVal ListID As String, Optional ByRef errorMsg As String = "") As Boolean

    ''' <summary>
    ''' It will add a new ItemSalesTax to ItemSalesTaxList.
    ''' CustomField1-CustomField15: Fotmat[CustomFieldName:CustomFieldValue]
    ''' </summary>
    ''' <param name="_ListID">to add new records to QB set ListID to a temporal one</param>
    ''' <param name="_Operation">set to empty, update, add, or delete</param>
    ''' <param name="errorMsg">returned error message</param>
Public Function AddToItemSalesTaxList(_ListID As String, _Name As String, Optional ByVal _TimeCreated As String = "", Optional ByVal _TimeModified As String = "", Optional ByVal _EditSequence As String = "", Optional ByVal _BarCodeValue As String = "", Optional ByVal _IsActive As String = "", Optional ByVal _ClassRef_ListID As String = "", Optional ByVal _ClassRef_FullName As String = "", Optional ByVal _ItemDesc As String = "", Optional ByVal _IsUsedOnPurchaseTransaction As String = "", Optional ByVal _TaxRate As String = "", Optional ByVal _TaxVendorRef_ListID As String = "", Optional ByVal _TaxVendorRef_FullName As String = "", Optional ByVal _SalesTaxReturnLineRef_ListID As String = "", Optional ByVal _SalesTaxReturnLineRef_FullName As String = "", Optional ByVal _ExternalGUID As String = "", Optional ByVal _UserData As String = "", Optional ByVal _Operation As String = "", Optional ByRef errorMsg As String = "") As ItemSalesTax

Powered by BetterDocs