QBFC:如何通过帐号查询客户?

时间:2013-08-26 16:49:47

标签: quickbooks qbfc

由于Intuit今天打破了QBFC参考,我不得不提出一个我通常可以查询的问题。 (我不知道该向谁投诉。)

我通常按list_id查询,如下所示:    ICustomerQuery CustomerQueryRq = requestMsgSet.AppendCustomerQueryRq();    CustomerQueryRq.ORCustomerListQuery.ListIDList.Add(qb_list_id);

有没有办法通过AccountNumber查询?

谢谢!

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

这是旧的,但也许值得补充。

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

class qbCustomerForSearch

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

end class

根据需要缓存/创建这些对象的列表,并搜索列表。一旦列在您的列表中,请使用listID标识QB客户。

干杯