Commit 7caf61b0 authored by clone's avatar clone

bug

parent 9131321d
...@@ -373,11 +373,12 @@ class OrderLogService ...@@ -373,11 +373,12 @@ class OrderLogService
$v["step"] = "报备【" . $v['house_title'] . "】"; $v["step"] = "报备【" . $v['house_title'] . "】";
$result[$sort++] = $v; $result[$sort++] = $v;
$order_ids .= $v["order_id"] . ","; $order_ids .= $v["order_id"] . ",";
$order_ids = rtrim($order_ids, ",");
$report_ids .= $v["id"] . ","; $report_ids .= $v["id"] . ",";
} }
$order_ids = rtrim($order_ids, ",");
$report_ids = rtrim($report_ids, ","); $report_ids = rtrim($report_ids, ",");
$orderParams["order_id"] = array( "in", $order_ids ); $orderParams["order_id"] = array( "in", $order_ids );
$orderParams["house_title"] = array( "like", "%" . trim($search) . "%" ); $orderParams["house_title"] = array( "like", "%" . trim($search) . "%" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment