Commit bb7d89ae authored by zw's avatar zw

客户动态商铺标题显示前三个

parent 3262d991
...@@ -538,7 +538,8 @@ class OrderLogService ...@@ -538,7 +538,8 @@ 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["step"] = "进场【" . $v['house_title'] . "】"; $house_title = substr($v['house_title'],0,-3)."***";
$v["step"] = "进场【" . $house_title . "】";
$result[$sort++] = $v; $result[$sort++] = $v;
} }
} }
...@@ -565,7 +566,8 @@ class OrderLogService ...@@ -565,7 +566,8 @@ 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["step"] = "收款【" . $v['house_title'] . "】"; $house_title = substr($v['house_title'],0,-3)."***";
$v["step"] = "收款【" . $house_title . "】";
$result[$sort++] = $v; $result[$sort++] = $v;
} }
} }
...@@ -578,7 +580,8 @@ class OrderLogService ...@@ -578,7 +580,8 @@ 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["step"] = "退款【" . $v['house_title'] . "】"; $house_title = substr($v['house_title'],0,-3)."***";
$v["step"] = "退款【" . $house_title . "】";
$result[$sort++] = $v; $result[$sort++] = $v;
} }
} }
...@@ -589,7 +592,8 @@ class OrderLogService ...@@ -589,7 +592,8 @@ 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["step"] = "成交报告【" . $v['house_title'] . "】"; $house_title = substr($v['house_title'],0,-3)."***";
$v["step"] = "成交报告【" . $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