使用QuickBooks PHP DevKit编辑quickbooks上的数据

时间:2012-06-20 15:10:41

标签: php quickbooks

我使用QuickBooks PHP DevKit通过Quickbooks Web连接器工具将我的Web应用程序连接到quickbooks。它在插入数据时效果很好,但在尝试更新时却给出了这个错误:

0x80040400:QuickBooks在解析提供的XML文本流时发现错误。

此链接显示可用的xml选项:

http://dev.developer.intuit.com/qbSDK-current/OSR/OnscreenRef/index-QBD.html

$xml = '<?xml version="1.0" encoding="utf-8"?>
    <?qbxml version="2.0"?>
    <QBXML>
        <QBXMLMsgsRq onError="stopOnError">
            <EstimateModRq requestID="' . $requestID . '">
                <EstimateMod>
                    <TxnID>B9-1340134119</TxnID>
                    <EditSequence>1340134119</EditSequence>
                    <CustomerRef>
                        <FullName>cliente prueba</FullName>
                    </CustomerRef>
                    <TxnDate>2009-01-09</TxnDate>
                    <RefNumber>16466</RefNumber>
                    <EstimateLineMod>
                        <TxnLineID>-1</TxnLineID>
                        <ItemRef>
                            <FullName>Sales</FullName>
                        </ItemRef>
                        <Desc>gift certificate</Desc>
                        <Quantity>4</Quantity>
                        <Rate>11.00</Rate>
                    </EstimateLineMod>
                </EstimateMod>
            </EstimateModRq>
        </QBXMLMsgsRq>
    </QBXML>';

1 个答案:

答案 0 :(得分:2)

如果你参考QuickBooks OSR(最好是这里的最新版本:http://developer.intuit.com/qbsdk-current/common/newosr/index.html),你会注意到EstimateMod请求的标记如下:

EstimateMod (3.0)

这意味着在qbXML版本 3.0 之前不支持EstimateMod(如果您需要更多详细信息,可以在QuickBooks SDK .PDF文档中获得有关qbXML版本的更多信息)。

您使用的是qbXML版 2.0

<?qbxml version="2.0"?>

将其更改为更高版本(6.0或更高版本是支持的最佳版本 - 6.0提供与大多数版本的QuickBooks最广泛的兼容性),您应该全部设置。