Commit 524d9295 authored by huyuchen's avatar huyuchen

Merge remote-tracking branch 'origin/MVP1.7.8' into MVP1.7.8

parents cee73b57 f3fcad63
......@@ -181,6 +181,7 @@ public class SysAutoDictItemController {
SysAutoDictItemVo settleDomainSelectVo = new SysAutoDictItemVo();
LambdaQueryWrapper<SysAutoDictItem> dictQuery = Wrappers.<SysAutoDictItem>lambdaQuery()
.eq(SysAutoDictItem::getDeptNo, dictItemVo.getDeptNo())
.eq(SysAutoDictItem::getDisable, CommonConstants.ZERO_STRING)
.eq(SysAutoDictItem::getDelFlag, CommonConstants.NOT_DELETE_FLAG);
List<SysAutoDictItem> list = sysAutoDictItemService.list(dictQuery);
......
......@@ -260,6 +260,7 @@ public class SysAutoDictItemServiceImpl extends ServiceImpl<SysAutoDictItemMappe
@Override
public List<SysAutoDictItem> selectByDeptNo(SysAutoDictItemSearchVo searchVo) {
LambdaQueryWrapper<SysAutoDictItem> wrapper = Wrappers.lambdaQuery();
wrapper.eq(SysAutoDictItem::getDisable,CommonConstants.ZERO_STRING);
wrapper.eq(SysAutoDictItem::getDelFlag,CommonConstants.NOT_DELETE_FLAG);
if (Common.isNotNull(searchVo.getDeptNo())){
wrapper.eq(SysAutoDictItem::getDeptNo,searchVo.getDeptNo());
......
......@@ -1595,16 +1595,16 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
// 审核日志
TPreEmpMainLog auditLog = new TPreEmpMainLog();
auditLog.setAuditId(user.getId());
auditLog.setAuditName(user.getNickname());
auditLog.setAuditName("自动审核");
auditLog.setAuditTime(new Date());
auditLog.setAuditRemark("简档自动审核通过");
auditLog.setMainId(main.getId());
auditLog.setAuditResult(status);
auditLog.setAuditResult(CommonConstants.FOUR_STRING);
tPreEmpMainLogService.save(auditLog);
main.setAuditId(user.getId());
main.setAuditRemark("简档自动审核通过");
main.setAuditName(user.getNickname());
main.setAuditName("自动审核");
main.setAuditTime(new Date());
updateToEmployeeByPre(vo, isSimpleBoo);
}
......@@ -1992,8 +1992,9 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmployeeProject.setTryPeriod("");
}
// 2024-7-23 11:52:33 金龙弟预张倩倩认为不同步项目的合同信息
String[] ignoreProperties = new String[]{"id", "contractType", "workingHours", "post", "enjoinDate"
, "enjoinDate", "tryPeriod"};
// String[] ignoreProperties = new String[]{"id", "contractType", "workingHours", "post", "enjoinDate", "tryPeriod"}
// 2025-3-27 15:13:30 张倩倩认为要同步项目的合同信息
String[] ignoreProperties = new String[]{"id", "workingHours", "tryPeriod"};
BeanUtil.copyProperties(tPreEmployeeProject, project, ignoreProperties);
if (CommonConstants.ONE_INT == project.getProjectStatus()) {
project.setCreateTime(LocalDateTime.now());
......@@ -2426,8 +2427,10 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmployeeProject.setTryPeriod("");
}
// 2024-7-23 11:52:33 金龙弟预张倩倩认为不同步项目的合同信息
String[] ignoreProperties = new String[]{"id", "contractType", "workingHours", "post", "enjoinDate"
, "enjoinDate", "tryPeriod"};
//String[] ignoreProperties = new String[]{"id", "contractType", "workingHours", "post", "enjoinDate", "tryPeriod"}
// 2025-3-27 15:13:30 张倩倩认为要同步项目的合同信息
String[] ignoreProperties = new String[]{"id", "workingHours", "tryPeriod"};
BeanUtil.copyProperties(tPreEmployeeProject, project, ignoreProperties);
if (Common.isEmpty(project.getStatus())) {
project.setStatus(CommonConstants.ZERO_INT);
......
......@@ -659,7 +659,7 @@ public class ExcelUtil <T> implements Serializable {
private String validateUtil(String c, ExcelAttribute attr, int i) {
//非空校验
if (attr.isNotEmpty() && !Common.isNotNull(c)) {
return errorInfo(attr, "_字段不可为空", i);
return errorInfo(attr, "_不可为空", i);
}
if (Common.isNotNull(c)) {
//日期格式校验
......@@ -780,7 +780,7 @@ public class ExcelUtil <T> implements Serializable {
if (null != errorMessageHashMap && null != errorMessage) {
temp = errorMessageHashMap.get(errorMessage.getLineNum());
if (null != temp) {
temp.setMessage(temp.getMessage() + CommonConstants.DOWN_LINE_STRING + errorMessage.getMessage());
temp.setMessage(temp.getMessage() + ";" + errorMessage.getMessage());
errorMessageHashMap.put(temp.getLineNum(), temp);
} else {
errorMessageHashMap.put(errorMessage.getLineNum(), errorMessage);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment