Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added more info

...

Public Function PriceInformation(ByVal accessKey As String, ByVal soldTo As String, ByVal articleList() As NettoPriceArticle, ByVal branchID As Integer) As NettoPriceArticle()
            Dim results() As Object = Me.Invoke("PriceInformation", New Object() {accessKey, soldTo, articleList, branchID})
            Return CType(results(0),NettoPriceArticle())

End Function


NettoPriceArticle object : 

View file
nameNettoPriceArticle.docx
height250


We are setting these two fields.

Image Added



We are using above PriceInformation function for getting the price and Balance info. We are only getting info of those products having stock status one of them (OnStock_CW Or OnStock_CW_Alternative Or OnStock_SGA) and ignoring the rest of the products in both cases (price and balance).

...