0

我有一个用例,用户输入客户或供应商名称,它从 QB、地址、余额返回基本信息......

在 Qbo 中,我执行以下操作;

cust_query = new Intuit.Ipp.Data.Qbo.CustomerQuery()
cust_query.name = "CUSTOMER NAME"
cust_query.SpecifyOperatorOption(Intuit.Ipp.Data.Qbo.FilterProperty.Name, Intuit.Ipp.Data.Qbo.FilterOperatorType.EQUALS)
cust_query.ExecuteQuery

所以我的问题是,我如何在 Qbd 中做同样的事情?
我似乎找不到任何示例或文档。
非常感谢

4

1 回答 1

1


在 DevKit 中构建查询的信息在这里:添加查询 http://docs.developer.intuit.com/0025_Intuit_Anywhere/0200_DevKits/0100_IPP_.NET_DevKit/Query_Filters/QuickBooks_Desktop_(Windows)

如果您只想知道如何在 REST 服务中进行操作。 http://docs.developer.intuit.com/0025_Intuit_Anywhere/0050_Data_Services/v2/0500_QuickBooks_Windows/0600_Object_Reference/Customer

您可以使用 FirstLastEnd、FirstLastStart、FirstLastInside 的查询属性。

谢谢贾里德
_

于 2013-03-25T14:54:14.977 回答