测试资源申请添加申请人所属会长

master
elf 3 years ago
parent b4db0d578b
commit 17f567e25e

@ -214,6 +214,7 @@ class TestingResourceController extends ThinkController
'user_account' => '测试账号', 'user_account' => '测试账号',
'user_phone' => '手机号', 'user_phone' => '手机号',
'promote_account' => '所属推广员', 'promote_account' => '所属推广员',
'apply_top_username' => '申请人所属会长',
'apply_username' => '申请人', 'apply_username' => '申请人',
'verify_admin_username' => '审核人', 'verify_admin_username' => '审核人',
'apply_amount' => '申请金额', 'apply_amount' => '申请金额',

@ -188,6 +188,7 @@
<th>测试账号</th> <th>测试账号</th>
<th>手机号</th> <th>手机号</th>
<th>所属推广员</th> <th>所属推广员</th>
<th>申请人所属会长</th>
<th>申请人</th> <th>申请人</th>
<th>审核人</th> <th>审核人</th>
<!-- <th>发放总金额</th> --> <!-- <th>发放总金额</th> -->
@ -222,6 +223,7 @@
<td>{$record.user_account}</td> <td>{$record.user_account}</td>
<td>{$record.user_phone}</td> <td>{$record.user_phone}</td>
<td>{$record.promote_account}</td> <td>{$record.promote_account}</td>
<td>{$record.apply_top_username}</td>
<td>{$record.apply_username}</td> <td>{$record.apply_username}</td>
<td>{$record.verify_admin_username}</td> <td>{$record.verify_admin_username}</td>
<!-- <td>{$record.history_provide_amount}</td> --> <!-- <td>{$record.history_provide_amount}</td> -->

@ -140,6 +140,7 @@ class TestingResourceRepository
{ {
$roles = []; $roles = [];
$applyPromotes = []; $applyPromotes = [];
$applyTopPromotes = [];
$users = []; $users = [];
$promotes = []; $promotes = [];
$verifyAdmins = []; $verifyAdmins = [];
@ -158,9 +159,14 @@ class TestingResourceRepository
$users = M('user', 'tab_')->field(['id', 'account', 'phone', 'promote_id'])->where(['id' => ['in', array_column($batches, 'user_id')]])->select(); $users = M('user', 'tab_')->field(['id', 'account', 'phone', 'promote_id'])->where(['id' => ['in', array_column($batches, 'user_id')]])->select();
$users = index_by_column('id', $users); $users = index_by_column('id', $users);
$applyPromotes = M('promote', 'tab_')->field(['id', 'account'])->where(['id' => ['in', array_column($batches, 'apply_promote_id')]])->select(); $applyPromotes = M('promote', 'tab_')->field(['id', 'account', 'level1_id'])->where(['id' => ['in', array_column($batches, 'apply_promote_id')]])->select();
$applyPromotes = index_by_column('id', $applyPromotes); $applyPromotes = index_by_column('id', $applyPromotes);
if (count($applyPromotes) > 0) {
$applyTopPromotes = M('promote', 'tab_')->field(['id', 'account'])->where(['id' => ['in', array_column($applyPromotes, 'level1_id')]])->select();
$applyTopPromotes = index_by_column('id', $applyTopPromotes);
}
$applyAdminIds = array_column($batches, 'apply_admin_id'); $applyAdminIds = array_column($batches, 'apply_admin_id');
$applyAdmins = M('ucenter_member', 'sys_')->field(['id', 'username'])->where(['id' => ['in', $applyAdminIds]])->select(); $applyAdmins = M('ucenter_member', 'sys_')->field(['id', 'username'])->where(['id' => ['in', $applyAdminIds]])->select();
$applyAdmins = index_by_column('id', $applyAdmins); $applyAdmins = index_by_column('id', $applyAdmins);
@ -180,6 +186,7 @@ class TestingResourceRepository
'promotes' => $promotes, 'promotes' => $promotes,
'verifyAdmins' => $verifyAdmins, 'verifyAdmins' => $verifyAdmins,
'applyAdmins' => $applyAdmins, 'applyAdmins' => $applyAdmins,
'applyTopPromotes' => $applyTopPromotes,
]; ];
} }
@ -192,6 +199,7 @@ class TestingResourceRepository
$promotes = $result['promotes']; $promotes = $result['promotes'];
$verifyAdmins = $result['verifyAdmins']; $verifyAdmins = $result['verifyAdmins'];
$applyAdmins = $result['applyAdmins']; $applyAdmins = $result['applyAdmins'];
$applyTopPromotes = $result['applyTopPromotes'];
$records = []; $records = [];
foreach ($batches as $batch) { foreach ($batches as $batch) {
@ -211,6 +219,7 @@ class TestingResourceRepository
'role_name' => $role ? $role['role_name'] : '--', 'role_name' => $role ? $role['role_name'] : '--',
'user_account' => $role ? $this->encodeStr($role['user_account']) : '--', 'user_account' => $role ? $this->encodeStr($role['user_account']) : '--',
'user_phone' => $user ? $this->encodeStr($user['phone']) : '', 'user_phone' => $user ? $this->encodeStr($user['phone']) : '',
'apply_top_username' => $applyPromote ? $this->encodeStr($applyTopPromotes[$applyPromote['level1_id']]['account']) : '--',
'apply_username' => $applyPromote ? $this->encodeStr($applyPromote['account']) . '[推广员]' : ($applyAdmin ? $this->encodeStr($applyAdmin['username']) . '[管理员]' : ''), 'apply_username' => $applyPromote ? $this->encodeStr($applyPromote['account']) . '[推广员]' : ($applyAdmin ? $this->encodeStr($applyAdmin['username']) . '[管理员]' : ''),
'promote_account' => $this->encodeStr($promote['account']), 'promote_account' => $this->encodeStr($promote['account']),
'verify_admin_username' => $batch['verify_status'] == 0 ? '--' : ($verifyAdmin ? $verifyAdmin['username'] : '系統'), 'verify_admin_username' => $batch['verify_status'] == 0 ? '--' : ($verifyAdmin ? $verifyAdmin['username'] : '系統'),

Loading…
Cancel
Save