由于Intuit今天破坏了QBFC的参考资料,我不得不问一个我通常可以查到的问题。(我不知道该向谁投诉)。
我通常通过list_id查询如下: ICustomerQuery CustomerQueryRq = requestMsgSet.AppendCustomerQueryRq();
有AccountNumber查询的方法吗?
谢谢!
发布于 2013-08-26 16:55:50
不,QuickBooks不支持AccountNumber字段的查询。
发布于 2014-01-23 09:46:24
这是旧的,但也许值得补充。
创建一个临时“缓存”对象,其中包含要搜索的所有属性。在启动时,以及每当客户进行更改时,缓存一个自定义QBcustomersForSearch对象列表,其中只包含您希望用于搜索的属性。
class qbCustomerForSearch
property email as string
property accountnumber as string
property whatever as string
property QBListId as string
end class根据需要缓存/创建这些对象的列表,并搜索列表。一旦定位在您的列表中,使用listID来识别QB客户。
干杯
https://stackoverflow.com/questions/18449026
复制相似问题