Commit 96e13506 authored by clone's avatar clone

1

parent 41c9fe7d
...@@ -1136,10 +1136,7 @@ class OrderLogService ...@@ -1136,10 +1136,7 @@ class OrderLogService
if (count($marchInData) > 0) { if (count($marchInData) > 0) {
foreach ($marchInData as $k => $v) { foreach ($marchInData as $k => $v) {
$v["step_name"] = "march_in"; $v["step_name"] = "march_in";
$v["user_id"] = $tree[$v["report_id"]]["user_id"]; $v["step"] = "进场【客户ID:" . $tree[$v["report_id"]]["user_id"] . "】";
//$house_title = mb_substr($v['house_title'], 0, 3, 'utf-8') . "***";
$house_title = $v['house_title'];
$v["step"] = "进场【id:" . $v['house_id'] . " " . $house_title . "】";
$result[$sort++] = $v; $result[$sort++] = $v;
} }
} }
...@@ -1151,10 +1148,7 @@ class OrderLogService ...@@ -1151,10 +1148,7 @@ class OrderLogService
if (count($payLogData) > 0) { if (count($payLogData) > 0) {
foreach ($payLogData as $k => $v) { foreach ($payLogData as $k => $v) {
$v["step_name"] = "pay_log"; $v["step_name"] = "pay_log";
$v["user_id"] = $tree[$v["report_id"]]["user_id"]; $v["step"] = "收款【客户ID:" . $tree[$v["report_id"]]["user_id"] . "】";
//$house_title = mb_substr($v['house_title'], 0, 3, 'utf-8') . "***";
$house_title = $v['house_title'];
$v["step"] = "收款【id:" . $v['house_id'] . " " . $house_title . "】";
$result[$sort++] = $v; $result[$sort++] = $v;
} }
} }
...@@ -1167,10 +1161,7 @@ class OrderLogService ...@@ -1167,10 +1161,7 @@ class OrderLogService
if (count($refundData) > 0) { if (count($refundData) > 0) {
foreach ($refundData as $k => $v) { foreach ($refundData as $k => $v) {
$v["step_name"] = "refund"; $v["step_name"] = "refund";
$v["user_id"] = $tree[$v["report_id"]]["user_id"]; $v["step"] = "退款【客户ID:" . $tree[$v["report_id"]]["user_id"] . "】";
//$house_title = mb_substr($v['house_title'], 0, 3, 'utf-8') . "***";
$house_title = $v['house_title'];
$v["step"] = "退款【id:" . $v['house_id'] . " " . $house_title . "】";
$result[$sort++] = $v; $result[$sort++] = $v;
} }
} }
...@@ -1181,10 +1172,7 @@ class OrderLogService ...@@ -1181,10 +1172,7 @@ class OrderLogService
if (count($bargainData) > 0) { if (count($bargainData) > 0) {
foreach ($bargainData as $k => $v) { foreach ($bargainData as $k => $v) {
$v["step_name"] = "bargain"; $v["step_name"] = "bargain";
$v["user_id"] = $tree[$v["report_id"]]["user_id"]; $v["step"] = "成交报告【客户ID:" . $tree[$v["report_id"]]["user_id"] . "】";
//$house_title = mb_substr($v['house_title'], 0, 3, 'utf-8') . "***";
$house_title = $v['house_title'];
$v["step"] = "成交报告【id:" . $v['house_id'] . " " . $house_title . "】";
$result[$sort++] = $v; $result[$sort++] = $v;
} }
} }
......
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