1

IDS 正确地接受 StartCreatedTMS/EndCreatedTMS 的查询以检索仅在 QuickBooks 中修改的对象 - 而不是数据服务。

IPP .NET 开发工具包似乎只公开 CDCAsOf 属性。我是否遗漏了什么和/或有没有办法通过 .NET 开发工具包通过 StartCreatedTMS 查询 QB 桌面?

4

1 回答 1

3
Intuit.Ipp.Data.Qbd.CustomerQuery customerQuery = new Intuit.Ipp.Data.Qbd.CustomerQuery();
customerQuery.ItemsElementName = new ItemsChoiceType4[] { ItemsChoiceType4.StartCreatedTMS, ItemsChoiceType4.EndCreatedTMS };
customerQuery.Items = new object[] { new DateTime(2012, 01, 01), new DateTime(2013, 01, 01) };
List<Intuit.Ipp.Data.Qbd.Customer> customersList = customerQuery.ExecuteQuery<Intuit.Ipp.Data.Qbd.Customer>(context).ToList();
于 2013-02-27T20:38:26.010 回答