修改
This commit is contained in:
parent
4b6d66e9b4
commit
e230c5ab09
@ -105,15 +105,15 @@ public class CompanyStaffController {
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建员工信息,在角色和用户已经存在的情况下用
|
||||
* 创建、修改员工信息,在角色和用户已经存在的情况下用
|
||||
*
|
||||
* @author 小李
|
||||
* @date 17:26 2024/12/19
|
||||
* @param staffRespVO 信息
|
||||
**/
|
||||
@PostMapping("/createByExistUser")
|
||||
public CommonResult<?> createByExistUser(@RequestBody CompanyStaffRespVO staffRespVO){
|
||||
staffService.createByExistUser(staffRespVO);
|
||||
@PostMapping("/updateByExistUser")
|
||||
public CommonResult<?> updateByExistUser(@RequestBody CompanyStaffRespVO staffRespVO){
|
||||
staffService.updateByExistUser(staffRespVO);
|
||||
return CommonResult.ok();
|
||||
}
|
||||
|
||||
|
@ -120,13 +120,13 @@ public class CompanyStaff extends TenantBaseDO {
|
||||
@JsonFormat(pattern="yyyy-MM-dd",timezone="GMT+8")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||
@ExcelProperty("转正时间")
|
||||
private LocalDateTime formalDate;
|
||||
private Date formalDate;
|
||||
|
||||
/** 购买保险时间 */
|
||||
@JsonFormat(pattern="yyyy-MM-dd",timezone="GMT+8")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||
@ExcelProperty("购买保险时间")
|
||||
private LocalDateTime safeDate;
|
||||
private Date safeDate;
|
||||
|
||||
/** 附件的名称们,手动填写,逗号分隔,没有也要占位,和下面的urls对应 */
|
||||
private String fileNames;
|
||||
|
@ -141,12 +141,12 @@ public interface CompanyStaffService extends IService<CompanyStaff> {
|
||||
CompanyStaffRespVO getMyAdviser(Long tenantId,String sysCode);
|
||||
|
||||
/**
|
||||
* 创建员工信息,在角色和用户已经存在的情况下用
|
||||
* 创建、修改员工信息,在角色和用户已经存在的情况下用
|
||||
*
|
||||
* @author 小李
|
||||
* @date 17:26 2024/12/19
|
||||
* @param staffRespVO 信息
|
||||
**/
|
||||
void createByExistUser(CompanyStaffRespVO staffRespVO);
|
||||
void updateByExistUser(CompanyStaffRespVO staffRespVO);
|
||||
|
||||
}
|
||||
|
@ -689,13 +689,15 @@ public class CompanyStaffServiceImpl extends ServiceImpl<CompanyStaffMapper, Com
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建员工信息,在角色和用户已经存在的情况下用
|
||||
* 创建、修改员工信息,在角色和用户已经存在的情况下用
|
||||
*
|
||||
* @author 小李
|
||||
* @date 17:26 2024/12/19
|
||||
* @param staffRespVO 信息
|
||||
**/
|
||||
public void createByExistUser(CompanyStaffRespVO staffRespVO){
|
||||
@Override
|
||||
public void updateByExistUser(CompanyStaffRespVO staffRespVO){
|
||||
if (ObjectUtil.isEmpty(staffRespVO.getId())){
|
||||
AdminUserRespDTO loginUser = getLoginUser();
|
||||
// 设置新增员工部门
|
||||
staffRespVO.setDeptId(loginUser.getDeptId());
|
||||
@ -710,5 +712,20 @@ public class CompanyStaffServiceImpl extends ServiceImpl<CompanyStaffMapper, Com
|
||||
staffRespVO.setUniqueCode(uniqueCode);
|
||||
// 3 保存员工信息到数据库
|
||||
baseMapper.insert(staffRespVO);
|
||||
}else {
|
||||
AdminUserRespDTO user = adminUserApi.getUser(staffRespVO.getUserId());
|
||||
AdminUserRespDTO newUser = new AdminUserRespDTO();
|
||||
newUser.setId(user.getId());
|
||||
if (!user.getUsername().equals(staffRespVO.getTel())){
|
||||
newUser.setUsername(staffRespVO.getTel());
|
||||
}
|
||||
if (!user.getNickname().equals(staffRespVO.getName())){
|
||||
newUser.setNickname(staffRespVO.getName());
|
||||
}
|
||||
if (ObjectUtil.isNotEmpty(newUser.getUsername()) || ObjectUtil.isNotEmpty(newUser.getNickname())){
|
||||
adminUserApi.updateUser(newUser);
|
||||
}
|
||||
baseMapper.updateById(staffRespVO);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -162,4 +162,13 @@ public interface AdminUserApi {
|
||||
**/
|
||||
void setOpenId(Long userId,String openId);
|
||||
|
||||
/**
|
||||
* 更新用户信息,慎用!
|
||||
*
|
||||
* @author 小李
|
||||
* @date 11:47 2024/12/20
|
||||
* @param newUser 新用户信息
|
||||
**/
|
||||
void updateUser(AdminUserRespDTO newUser);
|
||||
|
||||
}
|
||||
|
@ -195,4 +195,17 @@ public class AdminUserApiImpl implements AdminUserApi {
|
||||
userService.setOpenId(userId, openId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新用户信息,慎用!
|
||||
*
|
||||
* @author 小李
|
||||
* @date 11:47 2024/12/20
|
||||
* @param newUser 新用户信息
|
||||
**/
|
||||
@Override
|
||||
public void updateUser(AdminUserRespDTO newUser){
|
||||
AdminUserDO bean = BeanUtil.toBean(newUser, AdminUserDO.class);
|
||||
userService.updateById(bean);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user