Commit 8d2781c4 authored by zw's avatar zw

带看列表显示商铺地址

parent 71444f85
......@@ -1060,6 +1060,9 @@ class OrderLogService
* @param $pageSize
* @return mixed
* @throws \think\db\exception\BindParamException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
public function getSearchOrder($params, $pageNo, $pageSize)
......
......@@ -143,12 +143,16 @@ class ReportService
$house_id_str = "";
if (count($result) > 0) {
foreach ($result as $k => $v) {
//$result[$k]["user_phone"] = preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $v["user_phone"]);
$ids_str .= $v["order_id"] . ",";
$order_id = 0;
if(isset($v["order_id"])){
$order_id = $v["order_id"];
}else{
$order_id = $v["id"];
}
$ids_str .= $order_id . ",";
$house_id_str .= $v["house_id"] . ",";
}
$ids_str = rtrim($ids_str, ",");
$house_id_str = rtrim($house_id_str, ",");
......
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