dqellle310167 2015-02-21 10:02
浏览 71
已采纳

获取所有从quickbooks数据库接收付款记录? [关闭]

Working on a quickbooks api project in php. I created a request query for getting all receive payment records from quickbooks database. But the webconnector is giving error like Invalid xml. can u pls help me with the request and response query??

  • 写回答

1条回答 默认 最新

  • du8589840 2015-02-21 10:09
    关注

    I recently worked on this same project, so I can post complete code for receive payment records.

    I think you are using quickbooks php api downloaded from consolibyte.

    So in query request copy function like this :-

     function _quickbooks_receivepayment_query_request($requestID, $user, $action, $ID, $extra, &$err, $last_action_time, $last_actionident_time, $version, $locale)
    

    {

    $xml = '<?xml version="1.0" encoding="utf-8"?>
        <?qbxml version="2.0"?>
        <QBXML>
            <QBXMLMsgsRq onError="stopOnError">
        <ReceivePaymentQueryRq>
            <IncludeLineItems>true</IncludeLineItems>
                </ReceivePaymentQueryRq>    
            </QBXMLMsgsRq>
        </QBXML>';
    
    return $xml;
    

    }

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?