Commit 2927173d by 杨树贤

采购员查看

parent fd203a47
......@@ -38,7 +38,8 @@ class SupplierContactApiController extends Controller
//大家都可以查看离职的采购员的联系人
$allCanCheckUids = SupplierContactModel::where('supplier_id', $supplierId)->pluck('can_check_uids')->toArray();
$resignedUsers = (new AdminUserService())->getResignedUsers();
$resignedUserCodes = array_column($resignedUsers, 'code_id');
// $resignedUserCodes = array_column($resignedUsers, 'code_id');
$resignedUserCodes = [];
$resignedCanCheckUids = array_intersect($allCanCheckUids, $resignedUserCodes);
//不能查看所有的,就是说只能看绑定的采购的
if ($canViewAllSupplierContact) {
......
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