|
|
|
@ -1,17 +1,21 @@
|
|
|
|
|
package com.glxp.api.controller.sup;
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import javax.servlet.http.HttpSession;
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import com.glxp.api.entity.sup.UserCompanyEntity;
|
|
|
|
|
import com.glxp.api.req.auth.loginmobileRequest;
|
|
|
|
|
import com.glxp.api.res.auth.registComPerResponse;
|
|
|
|
|
import com.glxp.api.service.sup.UserCompanyService;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PathVariable;
|
|
|
|
@ -44,15 +48,18 @@ public class UserRegisterController extends BaseController {
|
|
|
|
|
private UserRegisterService userRegisterService;
|
|
|
|
|
@Resource
|
|
|
|
|
private UserPersonService userPersonService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private UserCompanyService userCompanyService;
|
|
|
|
|
@Resource
|
|
|
|
|
private UserCertService userCertService;
|
|
|
|
|
@PostMapping("/admin/auth/register/getCheckcode")
|
|
|
|
|
public BaseResponse getCheckcode(@RequestBody Map<String,Object> params, HttpSession httpSession) {
|
|
|
|
|
public BaseResponse getCheckcode(@RequestBody loginmobileRequest params, HttpSession httpSession) {
|
|
|
|
|
return CaptchaUtils.getCheckcode(params,httpSession);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/admin/auth/register/checkCode")
|
|
|
|
|
public BaseResponse checkCode(@RequestBody Map<String,Object> params) {
|
|
|
|
|
public BaseResponse checkCode(@RequestBody loginmobileRequest params) {
|
|
|
|
|
return CaptchaUtils.checkCode(params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -82,7 +89,7 @@ public class UserRegisterController extends BaseController {
|
|
|
|
|
return ResultVOUtils.success(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/admin/auth/register/save")
|
|
|
|
|
public BaseResponse saveRegister(@RequestBody @Valid UserRegisterEntity userRegisterEntity, HttpSession httpSession,
|
|
|
|
|
BindingResult bindingResult) {
|
|
|
|
@ -108,7 +115,7 @@ public class UserRegisterController extends BaseController {
|
|
|
|
|
userRegisterEntity.setCheckStatus("0");
|
|
|
|
|
boolean b = false;
|
|
|
|
|
b = userRegisterService.saveOrUpdate(userRegisterEntity);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!b) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
|
|
|
|
|
}
|
|
|
|
@ -124,4 +131,89 @@ public class UserRegisterController extends BaseController {
|
|
|
|
|
return ResultVOUtils.success(userRegisterService.list(new QueryWrapper<UserRegisterEntity>().allEq(params)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//第一次完善信息 插入默认数据
|
|
|
|
|
@GetMapping("/admin/auth/register/insertInitial")
|
|
|
|
|
public BaseResponse insertInitial (String mobile){
|
|
|
|
|
Map<Object, Object> map = new HashMap<>();
|
|
|
|
|
//根据手机号去查询 数据是否存在 不存在插入
|
|
|
|
|
UserRegisterEntity userRegister = userRegisterService.getOne(new QueryWrapper<UserRegisterEntity>().eq("mobile", mobile));
|
|
|
|
|
if(userRegister == null){
|
|
|
|
|
//插入初始数据
|
|
|
|
|
UserRegisterEntity userRegisterEntity = new UserRegisterEntity();
|
|
|
|
|
UserCompanyEntity userCompanyEntity = new UserCompanyEntity();
|
|
|
|
|
UserPersonEntity userPersonEntity = new UserPersonEntity();
|
|
|
|
|
|
|
|
|
|
userCompanyEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
userCompanyEntity.setCheckStatus(0+"");
|
|
|
|
|
userCompanyEntity.setRegisterTime(new Date());
|
|
|
|
|
|
|
|
|
|
userRegisterEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
userRegisterEntity.setCompanyId(userCompanyEntity.getId());
|
|
|
|
|
userRegisterEntity.setMobile(mobile);
|
|
|
|
|
userRegisterEntity.setRegisterTime(new Date());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// userPersonEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
// userPersonEntity.setCreateTime(new Date());
|
|
|
|
|
// userPersonEntity.setCompanyId(userCompanyEntity.getId());
|
|
|
|
|
// userPersonEntity.setMobile(mobile);
|
|
|
|
|
|
|
|
|
|
userRegisterService.insert(userRegisterEntity);
|
|
|
|
|
int insert = userCompanyService.insert(userCompanyEntity);
|
|
|
|
|
// userPersonService.insert(userPersonEntity);
|
|
|
|
|
if(insert>0){
|
|
|
|
|
// map.put("upId",userPersonEntity.getId()+"");
|
|
|
|
|
map.put("ucId",userCompanyEntity.getId()+"");
|
|
|
|
|
map.put("urId",userRegisterEntity.getId()+"");
|
|
|
|
|
return ResultVOUtils.success(map);
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.error(500,"添加失败");
|
|
|
|
|
}else{
|
|
|
|
|
registComPerResponse registComPerResponse = userRegisterService.selectAllInfo(userRegister.getCompanyId()+"");
|
|
|
|
|
map.put("registComPerResponse",registComPerResponse);
|
|
|
|
|
return ResultVOUtils.success(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/admin/auth/register/saveAllInfo")
|
|
|
|
|
public BaseResponse saveAllInfo(@RequestBody registComPerResponse registComPerResponse){
|
|
|
|
|
|
|
|
|
|
UserRegisterEntity userRegisterEntity = new UserRegisterEntity();
|
|
|
|
|
// UserPersonEntity userPersonEntity = new UserPersonEntity();
|
|
|
|
|
UserCompanyEntity userCompanyEntity = new UserCompanyEntity();
|
|
|
|
|
BeanUtils.copyProperties(registComPerResponse,userRegisterEntity);
|
|
|
|
|
// BeanUtils.copyProperties(registComPerResponse,userPersonEntity);
|
|
|
|
|
BeanUtils.copyProperties(registComPerResponse,userCompanyEntity);
|
|
|
|
|
userRegisterEntity.setId(Long.valueOf(registComPerResponse.getUrId()));
|
|
|
|
|
// userPersonEntity.setId(Long.valueOf(registComPerResponse.getUpId()));
|
|
|
|
|
userCompanyEntity.setId(Long.valueOf(registComPerResponse.getUcId()));
|
|
|
|
|
if("key".equals(registComPerResponse.getKey())){
|
|
|
|
|
//提交审核
|
|
|
|
|
userCompanyEntity.setCheckStatus(3+"");
|
|
|
|
|
}
|
|
|
|
|
//插入资质证书
|
|
|
|
|
for (UserCertEntity userCertEntity : registComPerResponse.getList()) {
|
|
|
|
|
userCertService.saveOrUpdate(userCertEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
userRegisterService.update(userRegisterEntity);
|
|
|
|
|
userCompanyService.update(userCompanyEntity);
|
|
|
|
|
// userPersonService.update(userPersonEntity);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|