...
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 | ||||
---|---|---|---|---|
|
We are setting these two fields.
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).
...