Commit b7e69f75 by 朱继来

Merge branch 'zjl_self_refund_20190605'

parents fce36bf6 62e0568c
Showing with 3 additions and 4 deletions
......@@ -107,12 +107,11 @@ function getOperatorName($uid, $type)
$name = '';
if ($type == 1) {
$user = DB::connection('order')->table('lie_user_main')->where('user_id', $uid)->select('user_name')->first();
$name = !empty($user->user_name) ? $user->user_name : '客户';
// $user = DB::connection('order')->table('lie_user_main')->where('user_id', $uid)->select('user_name')->first();
// $name = !empty($user->user_name) ? $user->user_name : '客户';
$name = '客户';
} else if ($type == 2) {
$user = DB::table('user_info')->where('userId', $uid)->select('name')->first();
$name = isset($user->name) ? $user->name : '未知';
} else if ($type == 3) {
$name = '系统定时任务';
......
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 sign in to comment