为什么 Magento salesOrderInvoiceList 接受 store_id 作为复杂过滤器?

问题描述 投票:0回答:1

我必须更新另一个程序员创建的代码。 它使用 php - SOAP 连接 Magento。 我正在挖掘以了解他做了什么,我发现了一个使用复杂过滤器的查询 针对 sales_order_invoice.info。 这是复杂的过滤器:

$complexFilter = array(            
      'complex_filter' => array(
        array(
               'key' => 'CREATED_AT',
               'value' => array(
                   'key' => 'from',
                   'value' => '2015-10-16 01:24:37'
               )
        ),
        array(
               'key' => 'state',
               'value' => array(
                   'key' => '=',
                   'value' => '2'
               )
        ),
        array(
               'key' => 'store_id',
               'value' => array(
                   'key' => 'in',
                   'value' => '5,6'
               )
        )
      )
);

这是连接代码:

$cli = new SoapClient("http://MYstaging.com/api/v2_soap/?wsdl");
$username = 'myuser';
$password = 'myPass';
$session_id = $cli->login($username, $password);
#$cli->__setCookie('XDEBUG_SESSION', 'netbeans-xdebug');      
$result = $cli->salesOrderInvoiceList($session_id, $complexFilter);

正如我们所见,查询应该从 salesOrderInvoiceList 检索一些信息,而且确实如此。 这是结果:

array (size=1)
  0 => 
    object(stdClass)[2]
      public 'increment_id' => string '500000001' (length=9)
      public 'created_at' => string '2015-10-16 20:07:18' (length=19)
      public 'order_currency_code' => string 'YYY' (length=3)
      public 'order_id' => string '9' (length=1)
      public 'state' => string '2' (length=1)
      public 'grand_total' => string '00.0000' (length=7)
      public 'invoice_id' => string '3' (length=1)

我不明白这一点。如果我们检查 Magendo 文档中的 sales_order_invoice.list,则没有 store_id 内容或领域。所以不应该将其用作过滤器。 但它确实存在于 sales_order_invoice.info

好吧,如果我将“store_id”字段更改为根本不存在的东西, 让我们说“BLAH_BLAH”当然我不会有任何结果。这就是正在发生的事情。这是有道理的。在幕后,我们可能有一个 sql 1054(未知列)错误。

$complexFilter = array(            
      'complex_filter' => array(
        array(
               'key' => 'CREATED_AT',
               'value' => array(
                   'key' => 'from',
                   'value' => '2015-10-16 01:24:37'
               )
        ),
        array(
               'key' => 'state',
               'value' => array(
                   'key' => '=',
                   'value' => '2'
               )
        ),
        array(
               'key' => 'BLAH_BLAH',
               'value' => array(
                   'key' => 'in',
                   'value' => '5,6'
               )
        )
      )
);

有人可以解释为什么 salesOrderInvoiceList 接受 store_id 作为过滤器吗?

php magento magento-soap-api
1个回答
0
投票

好吧,在被否决后,我已经在 Magento StackExchange 中发布了。 结论是文档中可能存在空白。 发帖

© www.soinside.com 2019 - 2024. All rights reserved.