Forum Discussion

jitenderkumar's avatar
6 years ago

How to get Purchase Order with Orderlines using .Net SDK?

Hi,

 

I am using the AccountRight .Net SDK to retrieve various entities like Customers, Account, PurchaseOrder etc.

I am able to get the PurchaseOrder using the following code -

var service = new PurchaseOrderService(config);
var result = service.GetRange(file, null, credentials);

 

The result contains only the PurchaseOrder info, can't find any Line items under it. Could you please guide how to get the order lines using the API? Any example would be great.

 

Many thanks.

 

Kind regards,

JK

  • skihappy's avatar
    skihappy
    Experienced Cover User

    Dim Pur1Svc = New Purchase.ServicePurchaseOrderService(myConfiguration, Nothing, _oAuthKeyService)

    Pur1Svc.GetRange(companyFile, null, credentials, OnServicePurchaseOrderLineComplete, OnError)

     

    returns all service purchase orders as a paged list (usually 1000 at a time) with lines (if you do not use filters)

     

    loopint = 0 to bills,items.count-1

    ...

    If Bills.Items(loopint).Lines.Count > 0 Then

    ...

    For lineitems = 0 To lvBills.Items(loopint).Lines.Count - 1

     ...   iterates through all PO line(s) in purchase order(s)