我有一个用例,用户键入客户或供应商名称,并从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中做同样的事情? 我似乎无法找到任何例子或文件 非常感谢
答案 0 :(得分: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的查询属性。
感谢
震动