我正在尝试按状态取回潜在客户的条目列表。我正在使用的查询是“leads.status = 'New'”但是当我在 php 中尝试这个时,我也得到了其他状态的线索。
function get_leads_over_x_days($session_id, $days)
{
$daysAgo = date("m/d/Y", strtotime($days . ' days ago'));
$where = "leads.status='New'";
$package = array(
"session" => $session_id,
"module_name" => "Leads",
"ids" => "",
"query" => $where,
"order_by" => "",
"select_fields" => "",
"max_results" => $max_results,
"deleted" => 0,
);
$result = $this->client->call("get_entry_list", $package);
if (!$this->is_error($result)) {
return $result["entry_list"];
}
}
现在,我使用 SoapUI ( http://www.soapui.org/ ) 执行了相同的肥皂调用,返回的记录正是我所期望的。我不确定我做错了什么,或者这是否是一个 nuSOAP 问题。