如何使用网络连接器从QuickBooks Desktop获取每日销售详情?

时间:2017-09-15 12:47:45

标签: php report quickbooks

我希望从Quickbooks Desktop获取所有销售数据。我有以下代码。

$xml = '<?xml version="1.0" encoding="utf-8"?>
                <?qbxml version="13.0"?>
                <QBXML>
                  <QBXMLMsgsRq onError="stopOnError">
                    <GeneralSummaryReportQueryRq  requestID="' . $requestID . '">
                        <GeneralSummaryReportType>SalesByCustomerSummary</GeneralSummaryReportType>

                          <DisplayReport>false</DisplayReport>
                          <ReportPeriod>
                            <FromReportDate>2011-01-01</FromReportDate>
                            <ToReportDate>2017-09-15</ToReportDate>
                          </ReportPeriod>

                        </GeneralSummaryReportQueryRq>
                      </QBXMLMsgsRq>
                    </QBXML>';

    return $xml;

当我用Sales替换SalesByCustomerSummary时 DailySalesDetail,然后返回错误,我的第二个问题是如何阻止web连接器和quicksbook之间的通信,因为它多次插入相同的记录。

提前致谢

----------- CODE ------------ 我有这两个功能:

    public function _quickbooks_import_daily_sale_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="13.0"?>
                <QBXML>
                  <QBXMLMsgsRq onError="stopOnError">
                    <GeneralDetailReportQueryRq>
                        <GeneralDetailReportType>SalesByItemDetail</GeneralDetailReportType>

                          <DisplayReport>false</DisplayReport>
                          <ReportPeriod>
                            <FromReportDate>2011-01-01</FromReportDate>
                            <ToReportDate>2017-09-15</ToReportDate>
                          </ReportPeriod>

                        </GeneralDetailReportQueryRq>
                      </QBXMLMsgsRq>
                    </QBXML>';

    return $xml;
}

public function _quickbooks_import_daily_sale_response($requestID, $user, $action, $ID, $extra, &$err, $last_action_time, $last_actionident_time, $xml, $idents)
{   




    $array = array(
                            'text' => $requestID.' <br />'.$xml
                        );
        $this->db->insert('save_response', $array);
//  echo "done";
    return false;
}

--------------- FOR QUEUE -----------------------

        //echo (__FILE__); exit;
        $user = $this->config->item('quickbooks_user');
        $pass = $this->config->item('quickbooks_pass');

        // Memory limit
        ini_set('memory_limit', $this->config->item('quickbooks_memorylimit'));

        // We need to make sure the correct timezone is set, or some PHP installations will complain
        if (function_exists('date_default_timezone_set'))
        {
            // * MAKE SURE YOU SET THIS TO THE CORRECT TIMEZONE! *
            // List of valid timezones is here: http://us3.php.net/manual/en/timezones.php
            date_default_timezone_set($this->config->item('quickbooks_tz'));
        }

        // Map QuickBooks actions to handler functions
        $map = array(
            //QUICKBOOKS_IMPORT_CUSTOMER => array( array( $this, '_quickbooks_customer_import_request' ), array( $this, '_quickbooks_customer_import_response' ) ),
            /*QUICKBOOKS_IMPORT_EMPLOYEE => array( array( $this, '_quickbooks_employee_import_request' ), array( $this, '_quickbooks_employee_import_response' ) ),*/
QUICKBOOKS_QUERY_INVOICE => array( array( $this, '_quickbooks_import_daily_sale_request' ), array( $this, '_quickbooks_import_daily_sale_response' ) ),
            //QUICKBOOKS_IMPORT_CUSTOMER => array( '_quickbooks_customer_import_request', '_quickbooks_customer_import_response' ), 
            );

        // Catch all errors that QuickBooks throws with this function 
        $errmap = array(
            '*' => array( $this, '_catchallErrors' ),
            );

        // Call this method whenever the Web Connector connects
        $hooks = array(
            QuickBooks_WebConnector_Handlers::HOOK_LOGINSUCCESS => array( array( $this, '_loginSuccess' ) ),    // Run this function whenever a successful login occurs
            );

        // An array of callback options
        $callback_options = array();

        // Logging level
        $log_level = $this->config->item('quickbooks_loglevel');

        // What SOAP server you're using 
        //$soapserver = QUICKBOOKS_SOAPSERVER_PHP;          // The PHP SOAP extension, see: www.php.net/soap
        $soapserver = QUICKBOOKS_SOAPSERVER_BUILTIN;        // A pure-PHP SOAP server (no PHP ext/soap extension required, also makes debugging easier)

        $soap_options = array(      // See http://www.php.net/soap
            );

        $handler_options = array(
            'deny_concurrent_logins' => false, 
            'deny_reallyfast_logins' => false, 
            );      // See the comments in the QuickBooks/Server/Handlers.php file

        $driver_options = array(        // See the comments in the QuickBooks/Driver/<YOUR DRIVER HERE>.php file ( i.e. 'Mysql.php', etc. )
            'max_log_history' => 32000, // Limit the number of quickbooks_log entries to 1024
            'max_queue_history' => 1024,    // Limit the number of *successfully processed* quickbooks_queue entries to 64
            );

        // Build the database connection string
        $dsn = 'mysqli://' . $this->db->username . ':' . $this->db->password . '@' . $this->db->hostname . '/' . $this->db->database;

        // Check to make sure our database is set up 
        if (!QuickBooks_Utilities::initialized($dsn))
        {
            // Initialize creates the neccessary database schema for queueing up requests and logging
            QuickBooks_Utilities::initialize($dsn);

            // This creates a username and password which is used by the Web Connector to authenticate
            QuickBooks_Utilities::createUser($dsn, $user, $pass);
        }

        // Set up our queue singleton
        QuickBooks_WebConnector_Queue_Singleton::initialize($dsn);

        // Create a new server and tell it to handle the requests
        // __construct($dsn_or_conn, $map, $errmap = array(), $hooks = array(), $log_level = QUICKBOOKS_LOG_NORMAL, $soap = QUICKBOOKS_SOAPSERVER_PHP, $wsdl = QUICKBOOKS_WSDL, $soap_options = array(), $handler_options = array(), $driver_options = array(), $callback_options = array()

        $Server = new QuickBooks_WebConnector_Server($dsn, $map, $errmap, $hooks, $log_level, $soapserver, QUICKBOOKS_WSDL, $soap_options, $handler_options, $driver_options, $callback_options);
        $response = $Server->handle();
        $Queue = new QuickBooks_WebConnector_Queue($dsn);
            $Queue->enqueue(QUICKBOOKS_QUERY_INVOICE);


    //exit;
        //echo "<pre>"; print_r($response);
        //echo "Mujtaba";

1 个答案:

答案 0 :(得分:1)

这是你的问题:

    $Queue = new QuickBooks_WebConnector_Queue($dsn);
    $Queue->enqueue(QUICKBOOKS_QUERY_INVOICE);

Web连接器的工作方式,Web连接器每次连接到QuickBooks时,都会使至少 2个HTTP请求。所以,这个脚本每次尝试与QuickBooks同步时都会运行至少 TWICE。

这意味着每次尝试与QuickBooks同步时,您都要排队至少两个请求来执行相同的操作。

Web连接器执行此操作:

  1. HTTP请求#1 - 验证
  2. (如果要做的话)HTTP请求#2 - 要求做第一件事
  3. (如果我们从上一步得到回复)HTTP请求#3 - 将回复从QuickBooks发回给您
  4. (如果还有更多的事情要做),请回到第2步。
  5. HTTP请求#N - 关闭连接/注销
  6. 因此,您需要更改代码,以便仅在首次连接时排队,而不是在每个HTTP请求上排队。

    这里有一个例子:

    基本上,只要Web连接器进行身份验证,就需要注册一个回调函数:

    $hooks = array(
        QuickBooks_WebConnector_Handlers::HOOK_LOGINSUCCESS => '_quickbooks_hook_loginsuccess',     // call this whenever a successful login occurs
        );
    

    然后在那个功能中排队:

    function _quickbooks_hook_loginsuccess($requestID, $user, $hook, &$err, $hook_data, $callback_config)
    {
        // For new users, we need to set up a few things
        // Fetch the queue instance
        $Queue = QuickBooks_WebConnector_Queue_Singleton::getInstance();
    
        $Queue->enqueue(... whatever you want to do here ...)
    }