【发布时间】:2015-11-21 20:45:04
【问题描述】:
我需要一些有关 Magento SOAP (Webservice) 中日期范围过滤器的帮助。
<?php
$client = new SoapClient('http://website/index.php/api/v2_soap?wsdl=1');
$apiuser="user";
$apikey="passwd";
$sess_id= $client->login($apiuser, $apikey);
$params = array( 'filter' => array(
array('key' => 'created_at','value' => array(
'from' => '2015-07-13 00:00:00',
'to' => '2015-07-13 23:59:59'))));
$vend=$client->salesOrderList($sess_id, $params);
print_r($vend);
?>
我尝试使用complex_filter,但出现分段失败。
有人有日期范围过滤器的工作示例吗?用soap v1还是v2更好?
【问题讨论】: