修复无法正常导入成员的问题

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2020-03-03 17:48:42 +08:00
parent 570120625c
commit 88d8be3908

View File

@ -146,6 +146,12 @@ class DepartmentMember extends CommonModel
}
} else {
$memberAccount = MemberAccount::where(['member_code' => $member['code'], 'organization_code' => $organizationCode])->find();
if (!$memberAccount) {
$memberAccount = MemberAccount::inviteMember($member['code'], $organizationCode, $position, $mobile, '', $description);
if (!isError($memberAccount)) {
$count++;
}
}
}
if ($departments) {
$departmentList = explode(';', $departments);
@ -168,6 +174,8 @@ class DepartmentMember extends CommonModel
} catch (Exception $e) {
return error(2, $e->getMessage());
}
}else{
}
}
}