QuickBooks - 检查客户有新发票

QuickBooks - check customer has new invoices

我试图找到一个标志来确定 QuickBooks 客户是否有新发票。我正在同步发票,下次尝试同步时,我想检查是否有任何新发票或更新过一次。

客户记录中有 syncToken,但它只显示客户对象的更新。

有没有办法检查更新的发票或新的发票,而不是全部同步?

提前致谢。

我们处理这个问题的方法是存储上次同步时间。将 上次同步时间 作为过滤器添加到 QuickBooks SDK 查询对象。第一次,所有发票都是同步的。下次同步时,同步上次同步时间后创建或修改的。这是我们正在使用的 Windows 服务的 C# 代码示例:

using QBXMLRP2Lib;
using Interop.QBFC13;

public void SyncTransactions(QBSessionManager sessionMgr, DateTime? fromModifiedDate)
{
    IMsgSetRequest msgset = sessionMgr.CreateMsgSetRequest("US", 13, 0);
    IInvoiceQuery invoiceQuery = msgset.AppendInvoiceQueryRq();
    invoiceQuery.IncludeLineItems.SetValue(true); // true if line items from a transaction have to included in the result set
    if (fromModifiedDate != null)
    {           
        invoiceQuery.ORInvoiceQuery.InvoiceFilter.ORDateRangeFilter.ModifiedDateRangeFilter.FromModifiedDate.SetValue(fromModifiedDate.Value, false);
        invoiceQuery.ORInvoiceQuery.InvoiceFilter.ORDateRangeFilter.ModifiedDateRangeFilter.FromModifiedDate.SetTimeZone(0, 0); // UTC, since we keep the last sync time in UTC

        IMsgSetResponse msgRes = sessionMgr.DoRequests(msgset);
        IResponseList responseList = msgRes.ResponseList;
        if (responseList.Count > 0)
        {
            // process the results here
        }
    }
}

希望对您有所帮助。

我在@Naveen 的回答后弄明白了。

基本上,当我们一次处理单个记录时,syncToken 很适合使用。我们可以将 syncToken 保留在我们的数据库中,并在下次根据 QuickBooks 进行检查。

但是,当涉及到批量记录获取时,它很好用 LastUpdatedTime

为了过滤发票,我所做的是如下查询 QuickBooks,

$InvoiceService = new QuickBooks_IPP_Service_Invoice();
$invoices = $InvoiceService->query($Context, $realm, "SELECT * FROM Invoice where MetaData.LastUpdatedTime > <date>";  

注意:<date>应该是长日期格式。例如:2004-02-12T15:19:21+00:00。我们可以通过date('c', mySql date);

得到这个日期格式

干杯..!!!再次感谢@Naveen 的提示