我正在尝试从 Quickbooks 中检索服务项目。
检索 时ItemInventoryRetList
,我得到了一些可以使用的属性,包括SalesDescription
.
但是,ItemInventoryRetList 不返回服务项目。
运行ItemNonInventryRetList
orItemServiceRetList
时,我没有Description
从 QBFC 类中获得任何属性。
查看响应,我发现我必须访问 SalesorPurchase。聚合以获取描述。
我正在尝试从 Quickbooks 中检索服务项目。
检索 时ItemInventoryRetList
,我得到了一些可以使用的属性,包括SalesDescription
.
但是,ItemInventoryRetList 不返回服务项目。
运行ItemNonInventryRetList
orItemServiceRetList
时,我没有Description
从 QBFC 类中获得任何属性。
查看响应,我发现我必须访问 SalesorPurchase。聚合以获取描述。
好了,整理好了。似乎屏幕上的参考真的是你的朋友......
填充 RetList 时,QBFC 已经构建了属性。很好......我的印象是我必须遍历 RetElement 中的子聚合/节点的“列表”。
使用以下,很有魅力。
RetListObject(withid).name.GetValue (etc)
'Sub Properties in Response
RetListObject(withid).ORSalesPurchase.SalesOrPurchase.Desc.GetValue
RetListObject(withid).ORSalesPurchase.SalesOrPurchase.ORPrice.Price.GetValue