0

Since Intuit has broken the QBFC reference today, I have to ask a question that I could normally look up. (I do not know who to complain to).

I normally query by list_id like so: ICustomerQuery CustomerQueryRq = requestMsgSet.AppendCustomerQueryRq(); CustomerQueryRq.ORCustomerListQuery.ListIDList.Add(qb_list_id);

Is there a way to query by AccountNumber?

Thanks!

4

2 回答 2

1

不,QuickBooks 不支持通过 AccountNumber 字段进行查询。

于 2013-08-26T16:55:50.427 回答
0

这是旧的,但也许值得添加。

创建一个临时“缓存”对象,其中包含您要搜索的所有属性。它们在启动时以及每当客户进行更改时,缓存自定义 QBcustomersForSearch 对象列表,其中仅包含您希望用于搜索的属性。

class qbCustomerForSearch

property email as string
property accountnumber as string
property whatever as string
property QBListId as string

end class

在需要时缓存/创建这些对象的列表,并搜索您的列表。在您的列表中找到后,使用 listID 来识别 QB 客户。

干杯

于 2014-01-23T09:46:24.610 回答