|
@@ -9,6 +9,9 @@ import com.yonge.cooleshow.biz.dal.entity.TenantAlbumPurchase;
|
|
|
import com.yonge.cooleshow.biz.dal.entity.TenantInfo;
|
|
|
import com.yonge.cooleshow.biz.dal.entity.TenantStaff;
|
|
|
import com.yonge.cooleshow.biz.dal.enums.ClientEnum;
|
|
|
+import com.yonge.cooleshow.biz.dal.mapper.SysUserMapper;
|
|
|
+import com.yonge.cooleshow.biz.dal.mapper.TenantInfoMapper;
|
|
|
+import com.yonge.cooleshow.biz.dal.mapper.TenantStaffMapper;
|
|
|
import com.yonge.cooleshow.biz.dal.service.*;
|
|
|
import com.yonge.cooleshow.biz.dal.wrapper.TenantInfoWrapper;
|
|
|
import com.yonge.cooleshow.common.constant.SysConfigConstant;
|
|
@@ -31,6 +34,7 @@ import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
import java.util.List;
|
|
|
+import java.util.Objects;
|
|
|
|
|
|
/**
|
|
|
* @Author:haonan
|
|
@@ -57,6 +61,15 @@ public class TenantInfoController extends BaseController {
|
|
|
@Autowired
|
|
|
private SysConfigService sysConfigService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private SysUserMapper sysUserMapper;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TenantStaffMapper tenantStaffMapper;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TenantInfoMapper tenantInfoMapper;
|
|
|
+
|
|
|
@ApiOperation(value = "发送登录短信验证码")
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "mobile", value = "手机号", required = true, dataType = "String"),
|
|
|
@ApiImplicitParam(name = "type", value = "类型(PASSWD:修改密码,LOGIN:登录或注册,BANK:绑定银行卡,PHONE:修改手机号)", required =
|
|
@@ -155,40 +168,50 @@ public class TenantInfoController extends BaseController {
|
|
|
if (StringUtils.isNotBlank(phone)){
|
|
|
boolean re = smsCodeService.verifyValidCode(phone, code, "PHONE");
|
|
|
if (re){
|
|
|
- SysUser user = sysUserFeignService.queryUserInfo();
|
|
|
- tenantInfoService.updateSysUser(sysUser1, user.getId());
|
|
|
-
|
|
|
- //设置默认头像
|
|
|
- if (StringUtils.isEmpty(sysUser.getAvatar())) {
|
|
|
- sysUser.setAvatar(sysConfigService.findConfigValue(SysConfigConstant.DEFAULT_HEARD));
|
|
|
- }
|
|
|
-
|
|
|
- //判断更改的手机所属的机构信息
|
|
|
-
|
|
|
- String oldPhone = user.getPhone();
|
|
|
- //查看原机构信息
|
|
|
- List<TenantInfo> list = tenantInfoService.lambdaQuery().eq(TenantInfo::getPhone, oldPhone).list();
|
|
|
- if (CollectionUtils.isNotEmpty(list)){
|
|
|
- TenantInfo info = list.get(0);
|
|
|
- if (ObjectUtil.isEmpty(info)) {
|
|
|
- //更新tennatInfo
|
|
|
- info.setPhone(phone);
|
|
|
- tenantInfoService.updateById(info);
|
|
|
+ //查询输入的手机号 是否存在于sysUser表中
|
|
|
+ SysUser user = sysUserMapper.findUserByPhone(phone);
|
|
|
+ if (Objects.nonNull(user)){
|
|
|
+ //如果存在 判断是否为机构员工
|
|
|
+ TenantStaff tenantStaff = tenantStaffService.getByUserId(user.getId());
|
|
|
+ if (!ObjectUtil.isEmpty(tenantStaff)){
|
|
|
+ throw new BizException("该手机号已绑定机构");
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- //更新员工表
|
|
|
- Long id = user.getId();
|
|
|
- TenantStaff staff = tenantStaffService.getByUserId(id);
|
|
|
- if (staff != null){
|
|
|
- staff.setNickname(sysUser.getUsername());
|
|
|
- staff.setAvatar(sysUser.getAvatar());
|
|
|
- tenantStaffService.updateById(staff);
|
|
|
+ } else {
|
|
|
+ //没有存在于sysUser表
|
|
|
+ SysUser newUser = new SysUser();
|
|
|
+
|
|
|
+ //查询当前登录账号
|
|
|
+ SysUser OldUser = sysUserFeignService.queryUserInfo();
|
|
|
+
|
|
|
+ //给新账户赋值
|
|
|
+ newUser = JSON.parseObject(OldUser.jsonString(), SysUser.class);
|
|
|
+ com.yonge.cooleshow.biz.dal.entity.SysUser sysUser2 = JSON.parseObject(newUser.jsonString(), com.yonge.cooleshow.biz.dal.entity.SysUser.class);
|
|
|
+ sysUser2.setUsername(sysUser.getUsername());
|
|
|
+ //设置默认头像
|
|
|
+ if (StringUtils.isEmpty(sysUser.getAvatar())) {
|
|
|
+ sysUser.setAvatar(sysConfigService.findConfigValue(SysConfigConstant.DEFAULT_HEARD));
|
|
|
+ } else {
|
|
|
+ sysUser2.setAvatar(sysUser.getAvatar());
|
|
|
+ }
|
|
|
+ sysUserMapper.insert(sysUser2);
|
|
|
+ //查询当前登录用户的userId
|
|
|
+ Long oldId = OldUser.getId();
|
|
|
+ //查询新用户的userId
|
|
|
+ Long newId = sysUser2.getId();
|
|
|
+
|
|
|
+ //staff 更新userId
|
|
|
+ tenantStaffMapper.updateUserId(newId,oldId, sysUser2.getUsername(),sysUser2.getAvatar());
|
|
|
+ //tennatinfo 更新userId 和 phone
|
|
|
+ tenantInfoMapper.updateIdPhone(newId,phone,oldId);
|
|
|
}
|
|
|
} else {
|
|
|
throw new BizException("手机号校验有误");
|
|
|
}
|
|
|
} else {
|
|
|
+ //更新当前用户的staff表
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
SysUser user = sysUserFeignService.queryUserInfo();
|
|
|
tenantInfoService.updateSysUser(sysUser1, user.getId());
|
|
|
|
|
@@ -205,6 +228,8 @@ public class TenantInfoController extends BaseController {
|
|
|
staff.setAvatar(sysUser.getAvatar());
|
|
|
tenantStaffService.updateById(staff);
|
|
|
}
|
|
|
+
|
|
|
+ //更新tenantInfo的username
|
|
|
}
|
|
|
return HttpResponseResult.succeed(true);
|
|
|
}
|