|
|
@@ -1370,7 +1370,7 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
newUser.setShareType(use.getShareType());
|
|
|
newList.add(newUser);
|
|
|
}
|
|
|
- if (AFTConstants.USER_TRANSFER_TO_OTHER == operatorType) {
|
|
|
+ if (AFTConstants.USER_TRANSFER_TO_OTHER.equals(operatorType)) {
|
|
|
flag = updateUsersLock(uList, oldAid, UserLockReleaseStatus.LOCKED.getCode(),
|
|
|
UserLockReleaseStatus.RELEASE.getCode()); // 原用户释放客户
|
|
|
if (flag > 0){
|
|
|
@@ -1382,7 +1382,7 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
}
|
|
|
}
|
|
|
int type = 2;
|
|
|
- if (AFTConstants.SIGN_USER_TRANSFER_TO_OTHER == operatorType)type = 7;
|
|
|
+ if (AFTConstants.SIGN_USER_TRANSFER_TO_OTHER.equals(operatorType))type = 7;
|
|
|
|
|
|
addUserTransferLog(uid, aid,oldAid, type, null, now, uList);
|
|
|
//转交客户后公出审核人也切换
|