0

I would like to get the ItemReceipt items that have LinkedTxn  with the PurchaseOrder type. Now I use the following query:

<?xml version="1.0" encoding="utf-8"?><?qbxml version="12.0"?>
<?qbxml version="12.0"?>
<QBXML>
    <QBXMLMsgsRq onError="continueOnError">
        <ItemReceiptQueryRq requestID="1">
            <IncludeLineItems>true</IncludeLineItems>
            <IncludeLinkedTxns>true</IncludeLinkedTxns>
            <OwnerID>0</OwnerID>
        </ItemReceiptQueryRq>
    </QBXMLMsgsRq>
</QBXML>

The query returned all ItemReceipt items, and I filtred them on the client.  Could you tell me if there is a way to create a filter that returns only items that have LinkedTxn with the PurchaseOrder type?

4

1 回答 1

1

QuickBooks SDK 不支持创建仅返回具有特定类型的 LinkedTxn 的项目的过滤器的方法。

您必须提取所有交易,然后在您的应用程序中过滤它们。

于 2013-06-26T10:08:24.410 回答