Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
4b2c6c5a
Commit
4b2c6c5a
authored
Mar 21, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.8-hgw(判断简档详档)
parent
753e849c
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
799 additions
and
644 deletions
+799
-644
TAttaInfoMapper.java
...u/cloud/plus/v1/yifu/archives/mapper/TAttaInfoMapper.java
+5
-0
TAttaInfoService.java
...cloud/plus/v1/yifu/archives/service/TAttaInfoService.java
+11
-0
TAttaInfoServiceImpl.java
...s/v1/yifu/archives/service/impl/TAttaInfoServiceImpl.java
+10
-0
TPreEmpMainServiceImpl.java
...v1/yifu/archives/service/impl/TPreEmpMainServiceImpl.java
+762
-644
TAttaInfoMapper.xml
...rchives-biz/src/main/resources/mapper/TAttaInfoMapper.xml
+11
-0
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/mapper/TAttaInfoMapper.java
View file @
4b2c6c5a
...
@@ -46,12 +46,17 @@ public interface TAttaInfoMapper extends BaseMapper<TAttaInfo> {
...
@@ -46,12 +46,17 @@ public interface TAttaInfoMapper extends BaseMapper<TAttaInfo> {
List
<
TAttaInfo
>
getAttaByApplyId
(
@Param
(
"applyId"
)
String
applyId
);
List
<
TAttaInfo
>
getAttaByApplyId
(
@Param
(
"applyId"
)
String
applyId
);
void
deleteByDomainId
(
@Param
(
"domainId"
)
String
domainId
);
void
deleteByDomainId
(
@Param
(
"domainId"
)
String
domainId
);
// 详档变简档,删除身份证、其他附件、签名之外的附件
void
deleteByDomainIdExceptionCard
(
@Param
(
"domainId"
)
String
domainId
);
void
deleteByDomainIdAndType
(
@Param
(
"domainId"
)
String
domainId
,
@Param
(
"relationType"
)
String
relationType
);
void
deleteByDomainIdAndType
(
@Param
(
"domainId"
)
String
domainId
,
@Param
(
"relationType"
)
String
relationType
);
// 删除学历与职业资格之外的附件
// 删除学历与职业资格之外的附件
void
deleteByDomainIdAndOther
(
@Param
(
"domainId"
)
String
domainId
);
void
deleteByDomainIdAndOther
(
@Param
(
"domainId"
)
String
domainId
);
// 简档,仅删除身份证附件和(21(预入职申明签名);22(预入职确认签名);23(预入职pdf文)
void
deleteByDomainIdCard
(
@Param
(
"domainId"
)
String
domainId
);
List
<
TAttaInfoVo
>
getAttInfoByParam
(
@Param
(
"departNo"
)
String
departNo
,
@Param
(
"startDate"
)
String
startDate
,
@Param
(
"endDate"
)
String
endDate
);
List
<
TAttaInfoVo
>
getAttInfoByParam
(
@Param
(
"departNo"
)
String
departNo
,
@Param
(
"startDate"
)
String
startDate
,
@Param
(
"endDate"
)
String
endDate
);
int
getAttInfoCountByParam
(
@Param
(
"departNo"
)
String
departNo
,
@Param
(
"startDate"
)
String
startDate
,
@Param
(
"endDate"
)
String
endDate
);
int
getAttInfoCountByParam
(
@Param
(
"departNo"
)
String
departNo
,
@Param
(
"startDate"
)
String
startDate
,
@Param
(
"endDate"
)
String
endDate
);
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/TAttaInfoService.java
View file @
4b2c6c5a
...
@@ -80,8 +80,19 @@ public interface TAttaInfoService extends IService<TAttaInfo> {
...
@@ -80,8 +80,19 @@ public interface TAttaInfoService extends IService<TAttaInfo> {
**/
**/
void
deleteByDomainId
(
String
domainId
);
void
deleteByDomainId
(
String
domainId
);
/**
* @Description: 详档变简档,删除身份证、其他附件、签名之外的附件
* @Author: hgw
* @Date: 2025/3/21 17:06
* @return: void
**/
void
deleteByDomainIdExceptionCard
(
String
domainId
);
void
deleteByDomainIdAndOther
(
String
domainId
);
void
deleteByDomainIdAndOther
(
String
domainId
);
// 简档,仅删除身份证附件和(21(预入职申明签名);22(预入职确认签名);23(预入职pdf文)
void
deleteByDomainIdCard
(
String
domainId
);
void
deleteByDomainIdAndType
(
String
domainId
,
int
relationType
);
void
deleteByDomainIdAndType
(
String
domainId
,
int
relationType
);
List
<
TAttaInfoVo
>
getAttInfoByParam
(
String
departNo
,
String
startDate
,
String
endDate
);
List
<
TAttaInfoVo
>
getAttInfoByParam
(
String
departNo
,
String
startDate
,
String
endDate
);
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TAttaInfoServiceImpl.java
View file @
4b2c6c5a
...
@@ -135,11 +135,21 @@ public class TAttaInfoServiceImpl extends ServiceImpl<TAttaInfoMapper, TAttaInfo
...
@@ -135,11 +135,21 @@ public class TAttaInfoServiceImpl extends ServiceImpl<TAttaInfoMapper, TAttaInfo
baseMapper
.
deleteByDomainId
(
domainId
);
baseMapper
.
deleteByDomainId
(
domainId
);
}
}
@Override
public
void
deleteByDomainIdExceptionCard
(
String
domainId
)
{
baseMapper
.
deleteByDomainIdExceptionCard
(
domainId
);
}
@Override
@Override
public
void
deleteByDomainIdAndOther
(
String
domainId
)
{
public
void
deleteByDomainIdAndOther
(
String
domainId
)
{
baseMapper
.
deleteByDomainIdAndOther
(
domainId
);
baseMapper
.
deleteByDomainIdAndOther
(
domainId
);
}
}
@Override
public
void
deleteByDomainIdCard
(
String
domainId
)
{
baseMapper
.
deleteByDomainIdCard
(
domainId
);
}
@Override
@Override
public
void
deleteByDomainIdAndType
(
String
domainId
,
int
relationType
)
{
public
void
deleteByDomainIdAndType
(
String
domainId
,
int
relationType
)
{
// 学历
// 学历
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TPreEmpMainServiceImpl.java
View file @
4b2c6c5a
...
@@ -213,7 +213,15 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -213,7 +213,15 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
// 类型1详档2简档
// 类型1详档2简档
String
isSimple
=
registrationPreService
.
judgeIsSimple
(
empIdCard
,
deptId
);
String
isSimple
=
registrationPreService
.
judgeIsSimple
(
empIdCard
,
deptId
);
TPreEmpDeclaration
declaration
;
TPreEmpDeclaration
declaration
;
// 是否为详档,true 是,否则不创建多余的附属信息
boolean
isDetailBoo
=
true
;
// 详变简,再清空预入职信息
boolean
isDetailToSimple
=
false
;
if
(
CommonConstants
.
TWO_STRING
.
equals
(
isSimple
))
{
if
(
CommonConstants
.
TWO_STRING
.
equals
(
isSimple
))
{
isDetailBoo
=
false
;
if
(
main
==
null
||
Common
.
isEmpty
(
main
.
getIsSimple
())
||
CommonConstants
.
ONE_STRING
.
equals
(
main
.
getIsSimple
()))
{
isDetailToSimple
=
true
;
}
declaration
=
tPreEmpDeclarationService
.
getById
(
CommonConstants
.
TWO_STRING
);
declaration
=
tPreEmpDeclarationService
.
getById
(
CommonConstants
.
TWO_STRING
);
}
else
{
}
else
{
declaration
=
tPreEmpDeclarationService
.
getTPreEmpDeclarationList
();
declaration
=
tPreEmpDeclarationService
.
getTPreEmpDeclarationList
();
...
@@ -227,8 +235,9 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -227,8 +235,9 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
TEmployeeProject
project
=
tEmployeeProjectService
.
getByEmpIdCardAndDeptId
(
empIdCard
,
deptId
);
TEmployeeProject
project
=
tEmployeeProjectService
.
getByEmpIdCardAndDeptId
(
empIdCard
,
deptId
);
PreEmpMainDetailVo
vo
=
new
PreEmpMainDetailVo
();
PreEmpMainDetailVo
vo
=
new
PreEmpMainDetailVo
();
YifuUser
user
=
getNewYifuUser
();
YifuUser
user
=
getNewYifuUser
();
if
(
main
!=
null
&&
CommonConstants
.
FIVE_STRING
.
equals
(
main
.
getStatus
())
)
{
if
(
main
!=
null
)
{
// 清空信息
// 清空信息
if
(
CommonConstants
.
FIVE_STRING
.
equals
(
main
.
getStatus
()))
{
if
(
Common
.
isNotNull
(
main
.
getId
()))
{
if
(
Common
.
isNotNull
(
main
.
getId
()))
{
baseMapper
.
deleteBadByMainId
(
main
.
getId
());
baseMapper
.
deleteBadByMainId
(
main
.
getId
());
baseMapper
.
deleteContactByMainId
(
main
.
getId
());
baseMapper
.
deleteContactByMainId
(
main
.
getId
());
...
@@ -245,6 +254,46 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -245,6 +254,46 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
baseMapper
.
deleteById
(
main
);
baseMapper
.
deleteById
(
main
);
main
=
null
;
main
=
null
;
}
}
// 1.7.8 2025-3-21 16:58:56 详档变简档,清空部分信息
if
(
main
!=
null
&&
isDetailToSimple
)
{
TPreEmployeeInfo
emp
=
tPreEmployeeInfoService
.
getTPreEmployeeInfoList
(
main
.
getId
());
// 先删除档案,然后保留部分信息(项目档案不用,因为都是项目信息等)
baseMapper
.
deleteEmployeeByMainId
(
main
.
getId
());
TPreEmployeeInfo
newEmp
=
new
TPreEmployeeInfo
();
newEmp
.
setOldId
(
emp
.
getOldId
());
newEmp
.
setPreMainId
(
main
.
getId
());
newEmp
.
setEmpName
(
emp
.
getEmpName
());
newEmp
.
setEmpIdcard
(
emp
.
getEmpIdcard
());
newEmp
.
setEmpPhone
(
emp
.
getEmpPhone
());
newEmp
.
setContactAddress
(
emp
.
getContactAddress
());
newEmp
.
setContactProvince
(
emp
.
getContactProvince
());
newEmp
.
setContactCity
(
emp
.
getContactCity
());
newEmp
.
setContactTown
(
emp
.
getContactTown
());
this
.
setBaseSexInfo
(
newEmp
);
newEmp
.
setBankProvince
(
emp
.
getBankProvince
());
newEmp
.
setBankCity
(
emp
.
getBankCity
());
newEmp
.
setBankName
(
emp
.
getBankName
());
newEmp
.
setBankSubName
(
emp
.
getBankSubName
());
newEmp
.
setBankNo
(
emp
.
getBankNo
());
newEmp
.
setCreateBy
(
user
.
getId
());
newEmp
.
setCreateName
(
user
.
getNickname
());
newEmp
.
setCreateTime
(
LocalDateTime
.
now
());
tPreEmployeeInfoService
.
save
(
newEmp
);
vo
.
setTpreEmployeeInfo
(
newEmp
);
// 全部保留
// baseMapper.deleteContactByMainId(main.getId())
// tPreEmpOtherFileService.deleteOtherFileByMainId(main.getId())
// 删除
baseMapper
.
deleteBadByMainId
(
main
.
getId
());
baseMapper
.
deleteDisabilityByMainId
(
main
.
getId
());
baseMapper
.
deleteEducationByMainId
(
main
.
getId
());
baseMapper
.
deleteFamilyByMainId
(
main
.
getId
());
tPreEmpWorkRecordingService
.
deleteByMainId
(
main
.
getId
());
tPreEmpProfessionalService
.
deleteProfessionalByMainId
(
main
.
getId
());
// 删除附件,保留身份证、其他附件、签名
tAttaInfoService
.
deleteByDomainIdExceptionCard
(
main
.
getId
());
}
}
// 审核通过并且有在项,取在项
// 审核通过并且有在项,取在项
boolean
empFirst
=
false
;
boolean
empFirst
=
false
;
if
((
main
==
null
||
(
main
!=
null
&&
CommonConstants
.
FOUR_STRING
.
equals
(
main
.
getStatus
())))
&&
employee
!=
null
&&
project
!=
null
)
{
if
((
main
==
null
||
(
main
!=
null
&&
CommonConstants
.
FOUR_STRING
.
equals
(
main
.
getStatus
())))
&&
employee
!=
null
&&
project
!=
null
)
{
...
@@ -416,6 +465,210 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -416,6 +465,210 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
if
(
vo
.
getTpreEmpDeclaration
()
==
null
)
{
if
(
vo
.
getTpreEmpDeclaration
()
==
null
)
{
vo
.
setTpreEmpDeclaration
(
declaration
);
vo
.
setTpreEmpDeclaration
(
declaration
);
}
}
// 预入职-紧急联络人
TPreEmpContactInfo
tPreEmpContactInfo
=
tPreEmpContactInfoService
.
getTPreEmpContactInfoList
(
id
);
if
(
tPreEmpContactInfo
==
null
||
empFirst
)
{
String
preId
=
null
;
if
(
tPreEmpContactInfo
!=
null
)
{
preId
=
tPreEmpContactInfo
.
getId
();
}
tPreEmpContactInfo
=
new
TPreEmpContactInfo
();
tPreEmpContactInfo
.
setId
(
preId
);
if
(
Common
.
isNotNull
(
empId
))
{
TEmpContactInfo
info
=
tEmpContactInfoService
.
getByEmpId
(
empId
);
if
(
info
!=
null
)
{
BeanUtil
.
copyProperties
(
info
,
tPreEmpContactInfo
,
ID
);
if
(
Common
.
isEmpty
(
preId
)
&&
!
empFirst
)
{
tPreEmpContactInfo
.
setId
(
info
.
getId
());
}
tPreEmpContactInfo
.
setEmpId
(
empId
);
tPreEmpContactInfo
.
setOldId
(
info
.
getId
());
}
}
tPreEmpContactInfo
.
setPreMainId
(
id
);
tPreEmpContactInfo
.
setCreateBy
(
user
.
getId
());
tPreEmpContactInfo
.
setCreateName
(
user
.
getNickname
());
tPreEmpContactInfo
.
setCreateTime
(
LocalDateTime
.
now
());
if
(
Common
.
isEmpty
(
tPreEmpContactInfo
.
getId
()))
{
tPreEmpContactInfoService
.
save
(
tPreEmpContactInfo
);
}
}
vo
.
setTpreEmpContactInfo
(
tPreEmpContactInfo
);
// 预入职-人员档案表
TPreEmployeeInfo
tPreEmployeeInfo
;
if
(
vo
.
getTpreEmployeeInfo
()
==
null
)
{
tPreEmployeeInfo
=
tPreEmployeeInfoService
.
getTPreEmployeeInfoList
(
id
);
if
(
tPreEmployeeInfo
==
null
)
{
tPreEmployeeInfo
=
new
TPreEmployeeInfo
();
// 预入职已审核+在项,取在项信息
if
(
empFirst
)
{
BeanUtil
.
copyProperties
(
employee
,
tPreEmployeeInfo
,
ID
);
tPreEmployeeInfo
.
setOldId
(
project
.
getId
());
}
tPreEmployeeInfo
.
setEmpIdcard
(
main
.
getEmpIdcard
());
tPreEmployeeInfo
.
setPreMainId
(
main
.
getId
());
tPreEmployeeInfo
.
setCreateBy
(
user
.
getId
());
tPreEmployeeInfo
.
setCreateName
(
user
.
getNickname
());
tPreEmployeeInfo
.
setCreateTime
(
LocalDateTime
.
now
());
tPreEmployeeInfoService
.
save
(
tPreEmployeeInfo
);
}
vo
.
setTpreEmployeeInfo
(
tPreEmployeeInfo
);
}
tPreEmployeeInfo
=
vo
.
getTpreEmployeeInfo
();
// 去薪资服务获取卡号
if
(
tPreEmployeeInfo
!=
null
&&
Common
.
isEmpty
(
tPreEmployeeInfo
.
getBankNo
())
&&
tSalaryEmployee
!=
null
&&
Common
.
isNotNull
(
tSalaryEmployee
.
getBankNo
()))
{
tPreEmployeeInfo
.
setBankNo
(
tSalaryEmployee
.
getBankNo
());
tPreEmployeeInfo
.
setBankName
(
tSalaryEmployee
.
getBankName
());
tPreEmployeeInfo
.
setBankSubName
(
tSalaryEmployee
.
getBankSubName
());
tPreEmployeeInfo
.
setBankProvince
(
tSalaryEmployee
.
getBankProvince
());
tPreEmployeeInfo
.
setBankCity
(
tSalaryEmployee
.
getBankCity
());
}
// 预入职-项目档案表
if
(
vo
.
getTpreEmployeeProject
()
==
null
)
{
TPreEmployeeProject
tPreEmployeeProject
=
tPreEmployeeProjectService
.
getTPreEmployeeProjectList
(
id
);
if
(
tPreEmployeeProject
==
null
)
{
tPreEmployeeProject
=
new
TPreEmployeeProject
();
// 预入职已审核+在项,取在项信息
if
(
empFirst
)
{
BeanUtil
.
copyProperties
(
project
,
tPreEmployeeProject
,
ID
);
tPreEmployeeProject
.
setOldId
(
project
.
getId
());
}
tPreEmployeeProject
.
setEmpIdcard
(
main
.
getEmpIdcard
());
tPreEmployeeProject
.
setUnitId
(
dept
.
getCustomerId
());
tPreEmployeeProject
.
setUnitName
(
dept
.
getCustomerName
());
tPreEmployeeProject
.
setUnitNo
(
dept
.
getCustomerNo
());
tPreEmployeeProject
.
setBusinessPrimaryType
(
dept
.
getBusinessPrimaryType
());
tPreEmployeeProject
.
setBusinessSecondType
(
dept
.
getBusinessSecondType
());
tPreEmployeeProject
.
setBusinessThirdType
(
dept
.
getBusinessThirdType
());
tPreEmployeeProject
.
setDeptId
(
main
.
getDeptId
());
tPreEmployeeProject
.
setDeptName
(
main
.
getDeptName
());
tPreEmployeeProject
.
setDeptNo
(
main
.
getDeptNo
());
tPreEmployeeProject
.
setPreMainId
(
main
.
getId
());
tPreEmployeeProject
.
setCreateBy
(
user
.
getId
());
tPreEmployeeProject
.
setCreateName
(
user
.
getNickname
());
tPreEmployeeProject
.
setCreateTime
(
LocalDateTime
.
now
());
tPreEmployeeProjectService
.
save
(
tPreEmployeeProject
);
}
vo
.
setTpreEmployeeProject
(
tPreEmployeeProject
);
}
// 预入职-其他附件
List
<
TPreEmpOtherFile
>
tPreEmpOtherFileList
=
tPreEmpOtherFileService
.
getTPreEmpOtherFileList
(
id
);
if
(
tPreEmpOtherFileList
==
null
||
tPreEmpOtherFileList
.
isEmpty
())
{
tPreEmpOtherFileList
=
new
ArrayList
<>();
if
(
Common
.
isNotNull
(
empId
))
{
List
<
TEmpOtherFile
>
infoList
=
tEmpOtherFileService
.
getListByEmpId
(
empId
);
TPreEmpOtherFile
record
;
if
(
infoList
!=
null
&&
!
infoList
.
isEmpty
())
{
for
(
TEmpOtherFile
info
:
infoList
)
{
record
=
new
TPreEmpOtherFile
();
BeanUtil
.
copyProperties
(
info
,
record
,
ID
);
record
.
setEmpId
(
empId
);
record
.
setOldId
(
info
.
getId
());
// 附件
List
<
TAttaInfo
>
attaInfoList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
info
.
getId
());
if
(
attaInfoList
!=
null
)
{
URL
url
;
for
(
TAttaInfo
atta
:
attaInfoList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
atta
.
getAttaSrc
());
atta
.
setAttaUrl
(
String
.
valueOf
(
url
));
}
}
record
.
setAttaList
(
attaInfoList
);
record
.
setPreMainId
(
id
);
if
(
Common
.
isEmpty
(
record
.
getCreateTime
()))
{
record
.
setCreateTime
(
LocalDateTime
.
now
());
}
tPreEmpOtherFileList
.
add
(
record
);
}
tPreEmpOtherFileService
.
saveBatch
(
tPreEmpOtherFileList
);
}
}
if
(
tPreEmpOtherFileList
.
isEmpty
())
{
TPreEmpOtherFile
record
=
new
TPreEmpOtherFile
();
if
(
employee
!=
null
)
{
record
.
setEmpId
(
employee
.
getId
());
}
record
.
setCreateTime
(
LocalDateTime
.
now
());
record
.
setPreMainId
(
id
);
record
.
setAttaList
(
new
ArrayList
<>());
tPreEmpOtherFileService
.
save
(
record
);
tPreEmpOtherFileList
.
add
(
record
);
}
}
else
if
(
empFirst
)
{
tPreEmpOtherFileList
=
new
ArrayList
<>();
if
(
Common
.
isNotNull
(
empId
))
{
List
<
TEmpOtherFile
>
infoList
=
tEmpOtherFileService
.
getListByEmpId
(
empId
);
TPreEmpOtherFile
record
;
if
(
infoList
!=
null
&&
!
infoList
.
isEmpty
())
{
for
(
TEmpOtherFile
info
:
infoList
)
{
record
=
new
TPreEmpOtherFile
();
BeanUtil
.
copyProperties
(
info
,
record
);
record
.
setEmpId
(
empId
);
record
.
setOldId
(
info
.
getId
());
// 附件
List
<
TAttaInfo
>
attaInfoList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
info
.
getId
());
if
(
attaInfoList
!=
null
)
{
URL
url
;
for
(
TAttaInfo
atta
:
attaInfoList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
atta
.
getAttaSrc
());
atta
.
setAttaUrl
(
String
.
valueOf
(
url
));
}
}
record
.
setAttaList
(
attaInfoList
);
record
.
setPreMainId
(
id
);
if
(
Common
.
isEmpty
(
record
.
getCreateTime
()))
{
record
.
setCreateTime
(
LocalDateTime
.
now
());
}
tPreEmpOtherFileList
.
add
(
record
);
}
}
}
if
(
tPreEmpOtherFileList
.
isEmpty
())
{
TPreEmpOtherFile
record
=
new
TPreEmpOtherFile
();
if
(
employee
!=
null
)
{
record
.
setEmpId
(
employee
.
getId
());
}
record
.
setCreateTime
(
LocalDateTime
.
now
());
record
.
setPreMainId
(
id
);
record
.
setAttaList
(
new
ArrayList
<>());
tPreEmpOtherFileList
.
add
(
record
);
}
}
else
{
for
(
TPreEmpOtherFile
info
:
tPreEmpOtherFileList
)
{
// 附件
List
<
TAttaInfo
>
attaInfoList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
info
.
getId
());
if
(
attaInfoList
!=
null
)
{
URL
url
;
for
(
TAttaInfo
atta
:
attaInfoList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
atta
.
getAttaSrc
());
atta
.
setAttaUrl
(
String
.
valueOf
(
url
));
}
}
info
.
setAttaList
(
attaInfoList
);
}
}
vo
.
setTpreEmpOtherFileList
(
tPreEmpOtherFileList
);
// 预入职-附件 9身份证 10 户口本;21(预入职申明签名);22(预入职确认签名);23(预入职pdf文件)
List
<
TAttaInfo
>
allAttaList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
id
);
if
((
allAttaList
==
null
||
allAttaList
.
isEmpty
()
||
empFirst
)
&&
Common
.
isNotNull
(
empId
))
{
allAttaList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
empId
);
}
if
(
allAttaList
!=
null
&&
!
allAttaList
.
isEmpty
())
{
URL
url
;
for
(
TAttaInfo
atta
:
allAttaList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
atta
.
getAttaSrc
());
atta
.
setAttaUrl
(
String
.
valueOf
(
url
));
}
}
vo
.
setAttaInfoList
(
allAttaList
);
// 以下为详档所有,简档不具有:
if
(
isDetailBoo
)
{
// 预入职-员工不良记录表
// 预入职-员工不良记录表
TPreEmpBadRecord
tPreEmpBadRecord
=
tPreEmpBadRecordService
.
getTPreEmpBadRecordList
(
id
);
TPreEmpBadRecord
tPreEmpBadRecord
=
tPreEmpBadRecordService
.
getTPreEmpBadRecordList
(
id
);
if
(
tPreEmpBadRecord
==
null
||
empFirst
)
{
if
(
tPreEmpBadRecord
==
null
||
empFirst
)
{
...
@@ -449,35 +702,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -449,35 +702,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
}
}
vo
.
setTpreEmpBadRecord
(
tPreEmpBadRecord
);
vo
.
setTpreEmpBadRecord
(
tPreEmpBadRecord
);
// 预入职-紧急联络人
TPreEmpContactInfo
tPreEmpContactInfo
=
tPreEmpContactInfoService
.
getTPreEmpContactInfoList
(
id
);
if
(
tPreEmpContactInfo
==
null
||
empFirst
)
{
String
preId
=
null
;
if
(
tPreEmpContactInfo
!=
null
)
{
preId
=
tPreEmpContactInfo
.
getId
();
}
tPreEmpContactInfo
=
new
TPreEmpContactInfo
();
tPreEmpContactInfo
.
setId
(
preId
);
if
(
Common
.
isNotNull
(
empId
))
{
TEmpContactInfo
info
=
tEmpContactInfoService
.
getByEmpId
(
empId
);
if
(
info
!=
null
)
{
BeanUtil
.
copyProperties
(
info
,
tPreEmpContactInfo
,
ID
);
if
(
Common
.
isEmpty
(
preId
)
&&
!
empFirst
)
{
tPreEmpContactInfo
.
setId
(
info
.
getId
());
}
tPreEmpContactInfo
.
setEmpId
(
empId
);
tPreEmpContactInfo
.
setOldId
(
info
.
getId
());
}
}
tPreEmpContactInfo
.
setPreMainId
(
id
);
tPreEmpContactInfo
.
setCreateBy
(
user
.
getId
());
tPreEmpContactInfo
.
setCreateName
(
user
.
getNickname
());
tPreEmpContactInfo
.
setCreateTime
(
LocalDateTime
.
now
());
if
(
Common
.
isEmpty
(
tPreEmpContactInfo
.
getId
()))
{
tPreEmpContactInfoService
.
save
(
tPreEmpContactInfo
);
}
}
vo
.
setTpreEmpContactInfo
(
tPreEmpContactInfo
);
// 预入职-员工伤残信息表
// 预入职-员工伤残信息表
TPreEmpDisabilityInfo
tPreEmpDisabilityInfo
=
tPreEmpDisabilityInfoService
.
getTPreEmpDisabilityInfoList
(
id
);
TPreEmpDisabilityInfo
tPreEmpDisabilityInfo
=
tPreEmpDisabilityInfoService
.
getTPreEmpDisabilityInfoList
(
id
);
if
(
tPreEmpDisabilityInfo
==
null
||
empFirst
)
{
if
(
tPreEmpDisabilityInfo
==
null
||
empFirst
)
{
...
@@ -664,64 +889,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -664,64 +889,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
}
}
vo
.
setTpreEmpFamilyList
(
tPreEmpFamilyList
);
vo
.
setTpreEmpFamilyList
(
tPreEmpFamilyList
);
// 预入职-人员档案表
TPreEmployeeInfo
tPreEmployeeInfo
;
if
(
vo
.
getTpreEmployeeInfo
()
==
null
)
{
tPreEmployeeInfo
=
tPreEmployeeInfoService
.
getTPreEmployeeInfoList
(
id
);
if
(
tPreEmployeeInfo
==
null
)
{
tPreEmployeeInfo
=
new
TPreEmployeeInfo
();
// 预入职已审核+在项,取在项信息
if
(
empFirst
)
{
BeanUtil
.
copyProperties
(
employee
,
tPreEmployeeInfo
,
ID
);
tPreEmployeeInfo
.
setOldId
(
project
.
getId
());
}
tPreEmployeeInfo
.
setEmpIdcard
(
main
.
getEmpIdcard
());
tPreEmployeeInfo
.
setPreMainId
(
main
.
getId
());
tPreEmployeeInfo
.
setCreateBy
(
user
.
getId
());
tPreEmployeeInfo
.
setCreateName
(
user
.
getNickname
());
tPreEmployeeInfo
.
setCreateTime
(
LocalDateTime
.
now
());
tPreEmployeeInfoService
.
save
(
tPreEmployeeInfo
);
}
vo
.
setTpreEmployeeInfo
(
tPreEmployeeInfo
);
}
tPreEmployeeInfo
=
vo
.
getTpreEmployeeInfo
();
// 去薪资服务获取卡号
if
(
tPreEmployeeInfo
!=
null
&&
Common
.
isEmpty
(
tPreEmployeeInfo
.
getBankNo
())
&&
tSalaryEmployee
!=
null
&&
Common
.
isNotNull
(
tSalaryEmployee
.
getBankNo
()))
{
tPreEmployeeInfo
.
setBankNo
(
tSalaryEmployee
.
getBankNo
());
tPreEmployeeInfo
.
setBankName
(
tSalaryEmployee
.
getBankName
());
tPreEmployeeInfo
.
setBankSubName
(
tSalaryEmployee
.
getBankSubName
());
tPreEmployeeInfo
.
setBankProvince
(
tSalaryEmployee
.
getBankProvince
());
tPreEmployeeInfo
.
setBankCity
(
tSalaryEmployee
.
getBankCity
());
}
// 预入职-项目档案表
if
(
vo
.
getTpreEmployeeProject
()
==
null
)
{
TPreEmployeeProject
tPreEmployeeProject
=
tPreEmployeeProjectService
.
getTPreEmployeeProjectList
(
id
);
if
(
tPreEmployeeProject
==
null
)
{
tPreEmployeeProject
=
new
TPreEmployeeProject
();
// 预入职已审核+在项,取在项信息
if
(
empFirst
)
{
BeanUtil
.
copyProperties
(
project
,
tPreEmployeeProject
,
ID
);
tPreEmployeeProject
.
setOldId
(
project
.
getId
());
}
tPreEmployeeProject
.
setEmpIdcard
(
main
.
getEmpIdcard
());
tPreEmployeeProject
.
setUnitId
(
dept
.
getCustomerId
());
tPreEmployeeProject
.
setUnitName
(
dept
.
getCustomerName
());
tPreEmployeeProject
.
setUnitNo
(
dept
.
getCustomerNo
());
tPreEmployeeProject
.
setBusinessPrimaryType
(
dept
.
getBusinessPrimaryType
());
tPreEmployeeProject
.
setBusinessSecondType
(
dept
.
getBusinessSecondType
());
tPreEmployeeProject
.
setBusinessThirdType
(
dept
.
getBusinessThirdType
());
tPreEmployeeProject
.
setDeptId
(
main
.
getDeptId
());
tPreEmployeeProject
.
setDeptName
(
main
.
getDeptName
());
tPreEmployeeProject
.
setDeptNo
(
main
.
getDeptNo
());
tPreEmployeeProject
.
setPreMainId
(
main
.
getId
());
tPreEmployeeProject
.
setCreateBy
(
user
.
getId
());
tPreEmployeeProject
.
setCreateName
(
user
.
getNickname
());
tPreEmployeeProject
.
setCreateTime
(
LocalDateTime
.
now
());
tPreEmployeeProjectService
.
save
(
tPreEmployeeProject
);
}
vo
.
setTpreEmployeeProject
(
tPreEmployeeProject
);
}
// 预入职-员工职业资格信息表
// 预入职-员工职业资格信息表
List
<
TPreEmpProfessionalQualification
>
tPreEmpProfessionalQualificationList
=
tPreEmpProfessionalService
.
getTPreEmpProfessionalQualificationList
(
id
);
List
<
TPreEmpProfessionalQualification
>
tPreEmpProfessionalQualificationList
=
tPreEmpProfessionalService
.
getTPreEmpProfessionalQualificationList
(
id
);
...
@@ -854,103 +1022,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -854,103 +1022,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
vo
.
setTpreEmpProfessionalQualificationList
(
tPreEmpProfessionalQualificationList
);
vo
.
setTpreEmpProfessionalQualificationList
(
tPreEmpProfessionalQualificationList
);
// 预入职-其他附件
List
<
TPreEmpOtherFile
>
tPreEmpOtherFileList
=
tPreEmpOtherFileService
.
getTPreEmpOtherFileList
(
id
);
if
(
tPreEmpOtherFileList
==
null
||
tPreEmpOtherFileList
.
isEmpty
())
{
tPreEmpOtherFileList
=
new
ArrayList
<>();
if
(
Common
.
isNotNull
(
empId
))
{
List
<
TEmpOtherFile
>
infoList
=
tEmpOtherFileService
.
getListByEmpId
(
empId
);
TPreEmpOtherFile
record
;
if
(
infoList
!=
null
&&
!
infoList
.
isEmpty
())
{
for
(
TEmpOtherFile
info
:
infoList
)
{
record
=
new
TPreEmpOtherFile
();
BeanUtil
.
copyProperties
(
info
,
record
,
ID
);
record
.
setEmpId
(
empId
);
record
.
setOldId
(
info
.
getId
());
// 附件
List
<
TAttaInfo
>
attaInfoList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
info
.
getId
());
if
(
attaInfoList
!=
null
)
{
URL
url
;
for
(
TAttaInfo
atta
:
attaInfoList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
atta
.
getAttaSrc
());
atta
.
setAttaUrl
(
String
.
valueOf
(
url
));
}
}
record
.
setAttaList
(
attaInfoList
);
record
.
setPreMainId
(
id
);
if
(
Common
.
isEmpty
(
record
.
getCreateTime
()))
{
record
.
setCreateTime
(
LocalDateTime
.
now
());
}
tPreEmpOtherFileList
.
add
(
record
);
}
tPreEmpOtherFileService
.
saveBatch
(
tPreEmpOtherFileList
);
}
}
if
(
tPreEmpOtherFileList
.
isEmpty
())
{
TPreEmpOtherFile
record
=
new
TPreEmpOtherFile
();
if
(
employee
!=
null
)
{
record
.
setEmpId
(
employee
.
getId
());
}
record
.
setCreateTime
(
LocalDateTime
.
now
());
record
.
setPreMainId
(
id
);
record
.
setAttaList
(
new
ArrayList
<>());
tPreEmpOtherFileService
.
save
(
record
);
tPreEmpOtherFileList
.
add
(
record
);
}
}
else
if
(
empFirst
)
{
tPreEmpOtherFileList
=
new
ArrayList
<>();
if
(
Common
.
isNotNull
(
empId
))
{
List
<
TEmpOtherFile
>
infoList
=
tEmpOtherFileService
.
getListByEmpId
(
empId
);
TPreEmpOtherFile
record
;
if
(
infoList
!=
null
&&
!
infoList
.
isEmpty
())
{
for
(
TEmpOtherFile
info
:
infoList
)
{
record
=
new
TPreEmpOtherFile
();
BeanUtil
.
copyProperties
(
info
,
record
);
record
.
setEmpId
(
empId
);
record
.
setOldId
(
info
.
getId
());
// 附件
List
<
TAttaInfo
>
attaInfoList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
info
.
getId
());
if
(
attaInfoList
!=
null
)
{
URL
url
;
for
(
TAttaInfo
atta
:
attaInfoList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
atta
.
getAttaSrc
());
atta
.
setAttaUrl
(
String
.
valueOf
(
url
));
}
}
record
.
setAttaList
(
attaInfoList
);
record
.
setPreMainId
(
id
);
if
(
Common
.
isEmpty
(
record
.
getCreateTime
()))
{
record
.
setCreateTime
(
LocalDateTime
.
now
());
}
tPreEmpOtherFileList
.
add
(
record
);
}
}
}
if
(
tPreEmpOtherFileList
.
isEmpty
())
{
TPreEmpOtherFile
record
=
new
TPreEmpOtherFile
();
if
(
employee
!=
null
)
{
record
.
setEmpId
(
employee
.
getId
());
}
record
.
setCreateTime
(
LocalDateTime
.
now
());
record
.
setPreMainId
(
id
);
record
.
setAttaList
(
new
ArrayList
<>());
tPreEmpOtherFileList
.
add
(
record
);
}
}
else
{
for
(
TPreEmpOtherFile
info
:
tPreEmpOtherFileList
)
{
// 附件
List
<
TAttaInfo
>
attaInfoList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
info
.
getId
());
if
(
attaInfoList
!=
null
)
{
URL
url
;
for
(
TAttaInfo
atta
:
attaInfoList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
atta
.
getAttaSrc
());
atta
.
setAttaUrl
(
String
.
valueOf
(
url
));
}
}
info
.
setAttaList
(
attaInfoList
);
}
}
vo
.
setTpreEmpOtherFileList
(
tPreEmpOtherFileList
);
// 预入职-员工工作履历信息表
// 预入职-员工工作履历信息表
List
<
TPreEmpWorkRecording
>
tPreEmpWorkRecordingList
=
tPreEmpWorkRecordingService
.
getTPreEmpWorkRecordingList
(
id
);
List
<
TPreEmpWorkRecording
>
tPreEmpWorkRecordingList
=
tPreEmpWorkRecordingService
.
getTPreEmpWorkRecordingList
(
id
);
if
(
tPreEmpWorkRecordingList
==
null
||
tPreEmpWorkRecordingList
.
isEmpty
())
{
if
(
tPreEmpWorkRecordingList
==
null
||
tPreEmpWorkRecordingList
.
isEmpty
())
{
...
@@ -1044,19 +1116,8 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -1044,19 +1116,8 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
vo
.
setTpreEmpWorkRecordingList
(
tPreEmpWorkRecordingList
);
vo
.
setTpreEmpWorkRecordingList
(
tPreEmpWorkRecordingList
);
// 预入职-附件 9身份证 10 户口本;21(预入职申明签名);22(预入职确认签名);23(预入职pdf文件)
List
<
TAttaInfo
>
attaInfoList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
id
);
if
((
attaInfoList
==
null
||
attaInfoList
.
isEmpty
()
||
empFirst
)
&&
Common
.
isNotNull
(
empId
))
{
attaInfoList
=
tAttaInfoService
.
getTAttaInfoListByDoMainId
(
empId
);
}
}
if
(
attaInfoList
!=
null
&&
!
attaInfoList
.
isEmpty
())
{
URL
url
;
for
(
TAttaInfo
atta
:
attaInfoList
)
{
url
=
ossUtil
.
getObjectUrl
(
null
,
atta
.
getAttaSrc
());
atta
.
setAttaUrl
(
String
.
valueOf
(
url
));
}
}
vo
.
setAttaInfoList
(
attaInfoList
);
return
R
.
ok
(
vo
);
return
R
.
ok
(
vo
);
}
}
...
@@ -1497,17 +1558,17 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -1497,17 +1558,17 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
}
}
}
}
// 如果是简档,将清空多余信息
// 如果是简档,将清空多余信息(在获取里清空过了)
boolean
isSimpleBoo
=
false
;
if
(
CommonConstants
.
TWO_STRING
.
equals
(
isSimple
))
{
if
(
CommonConstants
.
TWO_STRING
.
equals
(
isSimple
))
{
// TODO - 删除多余
isSimpleBoo
=
true
;
}
}
if
(
tPreEmployeeProject
!=
null
&&
Common
.
isNotNull
(
tPreEmployeeProject
.
getOldId
()))
{
if
(
tPreEmployeeProject
!=
null
&&
Common
.
isNotNull
(
tPreEmployeeProject
.
getOldId
()))
{
// 预入职-人员档案表
// 预入职-人员档案表
if
(
tPreEmployeeInfo
!=
null
&&
Common
.
isNotNull
(
tPreEmployeeInfo
.
getOldId
()))
{
if
(
tPreEmployeeInfo
!=
null
&&
Common
.
isNotNull
(
tPreEmployeeInfo
.
getOldId
()))
{
// 转到更新档案去
// 转到更新档案去
return
updateToEmployeeByPre
(
vo
);
return
updateToEmployeeByPre
(
vo
,
isSimpleBoo
);
}
else
{
}
else
{
return
R
.
failed
(
"档案原ID不可为空!"
);
return
R
.
failed
(
"档案原ID不可为空!"
);
}
}
...
@@ -1515,6 +1576,19 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -1515,6 +1576,19 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
// 有信息,就跳转到待审核
// 有信息,就跳转到待审核
if
(
pre
!=
null
&&
Common
.
isNotNull
(
pre
.
getId
())
&&
CommonConstants
.
ONE_STRING
.
equals
(
status
))
{
if
(
pre
!=
null
&&
Common
.
isNotNull
(
pre
.
getId
())
&&
CommonConstants
.
ONE_STRING
.
equals
(
status
))
{
main
.
setStatus
(
CommonConstants
.
TWO_STRING
);
main
.
setStatus
(
CommonConstants
.
TWO_STRING
);
if
(
isSimpleBoo
)
{
main
.
setStatus
(
CommonConstants
.
FOUR_STRING
);
// 审核日志
TPreEmpMainLog
auditLog
=
new
TPreEmpMainLog
();
auditLog
.
setAuditId
(
user
.
getId
());
auditLog
.
setAuditName
(
user
.
getNickname
());
auditLog
.
setAuditTime
(
new
Date
());
auditLog
.
setAuditRemark
(
"简档自动审核通过"
);
auditLog
.
setMainId
(
main
.
getId
());
auditLog
.
setAuditResult
(
status
);
tPreEmpMainLogService
.
save
(
auditLog
);
updateToEmployeeByPre
(
vo
,
isSimpleBoo
);
}
}
}
main
.
setStatus
(
status
);
main
.
setStatus
(
status
);
main
.
setCreateBy
(
user
.
getId
());
main
.
setCreateBy
(
user
.
getId
());
...
@@ -1785,12 +1859,13 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -1785,12 +1859,13 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
/**
/**
* @param isSimpleBoo true 简档,仅更新部分信息
* @Description: 执行复制到档案的操作
* @Description: 执行复制到档案的操作
* @Author: hgw
* @Author: hgw
* @Date: 2024/6/18 19:35
* @Date: 2024/6/18 19:35
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.String>
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.String>
**/
**/
private
R
<
String
>
updateToEmployeeByPre
(
PreEmpMainDetailVo
vo
)
{
private
R
<
String
>
updateToEmployeeByPre
(
PreEmpMainDetailVo
vo
,
boolean
isSimpleBoo
)
{
YifuUser
user
=
SecurityUtils
.
getUser
();
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
user
==
null
)
{
if
(
user
==
null
)
{
user
=
getNewYifuUser
();
user
=
getNewYifuUser
();
...
@@ -1848,7 +1923,29 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -1848,7 +1923,29 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
if
(
emp
!=
null
)
{
if
(
emp
!=
null
)
{
// 生成性别年龄等:
// 生成性别年龄等:
this
.
setBaseSexInfo
(
tPreEmployeeInfo
);
this
.
setBaseSexInfo
(
tPreEmployeeInfo
);
if
(
isSimpleBoo
)
{
// 简档,仅重置部分信息:
emp
.
setEmpName
(
tPreEmployeeInfo
.
getEmpName
());
emp
.
setEmpIdcard
(
tPreEmployeeInfo
.
getEmpIdcard
());
emp
.
setEmpPhone
(
tPreEmployeeInfo
.
getEmpPhone
());
emp
.
setContactAddress
(
tPreEmployeeInfo
.
getContactAddress
());
emp
.
setContactProvince
(
tPreEmployeeInfo
.
getContactProvince
());
emp
.
setContactCity
(
tPreEmployeeInfo
.
getContactCity
());
emp
.
setContactTown
(
tPreEmployeeInfo
.
getContactTown
());
emp
.
setEmpBirthday
(
tPreEmployeeInfo
.
getEmpBirthday
());
emp
.
setEmpSex
(
tPreEmployeeInfo
.
getEmpSex
());
emp
.
setEmpAge
(
tPreEmployeeInfo
.
getEmpAge
());
emp
.
setBankProvince
(
tPreEmployeeInfo
.
getBankProvince
());
emp
.
setBankCity
(
tPreEmployeeInfo
.
getBankCity
());
emp
.
setBankName
(
tPreEmployeeInfo
.
getBankName
());
emp
.
setBankSubName
(
tPreEmployeeInfo
.
getBankSubName
());
emp
.
setBankNo
(
tPreEmployeeInfo
.
getBankNo
());
emp
.
setCreateBy
(
user
.
getId
());
emp
.
setCreateName
(
user
.
getNickname
());
emp
.
setCreateTime
(
LocalDateTime
.
now
());
}
else
{
BeanUtil
.
copyProperties
(
tPreEmployeeInfo
,
emp
,
ID
);
BeanUtil
.
copyProperties
(
tPreEmployeeInfo
,
emp
,
ID
);
}
if
(
CommonConstants
.
ONE_INT
==
emp
.
getFileStatus
())
{
if
(
CommonConstants
.
ONE_INT
==
emp
.
getFileStatus
())
{
emp
.
setCreateTime
(
LocalDateTime
.
now
());
emp
.
setCreateTime
(
LocalDateTime
.
now
());
emp
.
setFileStatus
(
CommonConstants
.
ZERO_INT
);
emp
.
setFileStatus
(
CommonConstants
.
ZERO_INT
);
...
@@ -1966,6 +2063,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -1966,6 +2063,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
// 预入职-员工职业资格信息表
// 预入职-员工职业资格信息表
// 最高学历
// 最高学历
if
(!
isSimpleBoo
)
{
if
(
tPreEmpEducation
!=
null
)
{
if
(
tPreEmpEducation
!=
null
)
{
TEmpEducation
tEmpEducation
=
null
;
TEmpEducation
tEmpEducation
=
null
;
if
(
Common
.
isNotNull
(
tPreEmpEducation
.
getOldId
()))
{
if
(
Common
.
isNotNull
(
tPreEmpEducation
.
getOldId
()))
{
...
@@ -2049,6 +2147,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -2049,6 +2147,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
tEmpBadRecordService
.
saveOrUpdate
(
tEmpBadRecord
);
tEmpBadRecordService
.
saveOrUpdate
(
tEmpBadRecord
);
}
}
}
// 预入职-紧急联络人
// 预入职-紧急联络人
TPreEmpContactInfo
tPreEmpContactInfo
=
vo
.
getTpreEmpContactInfo
();
TPreEmpContactInfo
tPreEmpContactInfo
=
vo
.
getTpreEmpContactInfo
();
if
(
tPreEmpContactInfo
!=
null
)
{
if
(
tPreEmpContactInfo
!=
null
)
{
...
@@ -2077,6 +2176,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -2077,6 +2176,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
// 预入职-员工伤残信息表
// 预入职-员工伤残信息表
TPreEmpDisabilityInfo
tPreEmpDisabilityInfo
=
vo
.
getTpreEmpDisabilityInfo
();
TPreEmpDisabilityInfo
tPreEmpDisabilityInfo
=
vo
.
getTpreEmpDisabilityInfo
();
if
(!
isSimpleBoo
)
{
if
(
tPreEmpDisabilityInfo
!=
null
)
{
if
(
tPreEmpDisabilityInfo
!=
null
)
{
TEmpDisabilityInfo
tEmpDisabilityInfo
=
null
;
TEmpDisabilityInfo
tEmpDisabilityInfo
=
null
;
if
(
Common
.
isNotNull
(
tPreEmpDisabilityInfo
.
getOldId
()))
{
if
(
Common
.
isNotNull
(
tPreEmpDisabilityInfo
.
getOldId
()))
{
...
@@ -2180,6 +2280,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -2180,6 +2280,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
}
}
}
// 预入职-其他附件
// 预入职-其他附件
List
<
TPreEmpOtherFile
>
preEmpOtherFileList
=
vo
.
getTpreEmpOtherFileList
();
List
<
TPreEmpOtherFile
>
preEmpOtherFileList
=
vo
.
getTpreEmpOtherFileList
();
// 先删除其他信息
// 先删除其他信息
...
@@ -2216,6 +2317,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -2216,6 +2317,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
}
}
}
// 预入职-员工工作履历信息表
// 预入职-员工工作履历信息表
if
(!
isSimpleBoo
)
{
List
<
TPreEmpWorkRecording
>
tPreEmpWorkRecordingList
=
vo
.
getTpreEmpWorkRecordingList
();
List
<
TPreEmpWorkRecording
>
tPreEmpWorkRecordingList
=
vo
.
getTpreEmpWorkRecordingList
();
// 先删除其他信息
// 先删除其他信息
tEmpWorkRecordingService
.
deleteWorkRecordByEmpId
(
empId
);
tEmpWorkRecordingService
.
deleteWorkRecordByEmpId
(
empId
);
...
@@ -2241,11 +2343,17 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -2241,11 +2343,17 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tEmpWorkRecordingService
.
save
(
info
);
tEmpWorkRecordingService
.
save
(
info
);
}
}
}
}
}
// 预入职-附件
// 预入职-附件
List
<
TAttaInfo
>
attaList
=
vo
.
getAttaInfoList
();
List
<
TAttaInfo
>
attaList
=
vo
.
getAttaInfoList
();
if
(
attaList
!=
null
)
{
if
(
attaList
!=
null
)
{
// 先删除其他信息
// 先删除其他信息
if
(!
isSimpleBoo
)
{
tAttaInfoService
.
deleteByDomainIdAndOther
(
empId
);
tAttaInfoService
.
deleteByDomainIdAndOther
(
empId
);
}
else
{
// 简档,仅删除身份证附件和(21(预入职申明签名);22(预入职确认签名);23(预入职pdf文)
tAttaInfoService
.
deleteByDomainIdCard
(
empId
);
}
TAttaInfo
attaEmp
;
TAttaInfo
attaEmp
;
List
<
TAttaInfo
>
attaEmpList
=
new
ArrayList
<>();
List
<
TAttaInfo
>
attaEmpList
=
new
ArrayList
<>();
for
(
TAttaInfo
atta
:
attaList
)
{
for
(
TAttaInfo
atta
:
attaList
)
{
...
@@ -2731,7 +2839,12 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -2731,7 +2839,12 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpMainLogService
.
save
(
auditLog
);
tPreEmpMainLogService
.
save
(
auditLog
);
this
.
updateById
(
preEmpMain
);
this
.
updateById
(
preEmpMain
);
if
(
CommonConstants
.
FOUR_STRING
.
equals
(
status
))
{
if
(
CommonConstants
.
FOUR_STRING
.
equals
(
status
))
{
return
updateToEmployeeByPre
(
vo
);
// true 简档
boolean
isSimpleBoo
=
false
;
if
(
Common
.
isNotNull
(
preEmpMain
.
getIsSimple
())
&&
CommonConstants
.
TWO_STRING
.
equals
(
preEmpMain
.
getIsSimple
()))
{
isSimpleBoo
=
true
;
}
return
updateToEmployeeByPre
(
vo
,
isSimpleBoo
);
}
else
{
}
else
{
return
R
.
ok
(
"已审核"
);
return
R
.
ok
(
"已审核"
);
}
}
...
@@ -2803,7 +2916,12 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
...
@@ -2803,7 +2916,12 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
this
.
updateById
(
preEmpMain
);
this
.
updateById
(
preEmpMain
);
tPreEmpMainLogService
.
save
(
auditLog
);
tPreEmpMainLogService
.
save
(
auditLog
);
if
(
CommonConstants
.
FOUR_STRING
.
equals
(
status
))
{
if
(
CommonConstants
.
FOUR_STRING
.
equals
(
status
))
{
updateToEmployeeByPre
(
vo
);
// true 简档
boolean
isSimpleBoo
=
false
;
if
(
Common
.
isNotNull
(
preEmpMain
.
getIsSimple
())
&&
CommonConstants
.
TWO_STRING
.
equals
(
preEmpMain
.
getIsSimple
()))
{
isSimpleBoo
=
true
;
}
updateToEmployeeByPre
(
vo
,
isSimpleBoo
);
}
}
}
}
}
}
...
...
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TAttaInfoMapper.xml
View file @
4b2c6c5a
...
@@ -127,6 +127,11 @@
...
@@ -127,6 +127,11 @@
delete from t_atta_info where domain_id=#{domainId}
delete from t_atta_info where domain_id=#{domainId}
</delete>
</delete>
<!-- 详档变简档,删除身份证、其他附件、签名之外的附件 -->
<delete
id=
"deleteByDomainIdExceptionCard"
>
delete from t_atta_info where domain_id=#{domainId} and relation_type not in ('9','24','27','21','22')
</delete>
<delete
id=
"deleteByDomainIdAndType"
>
<delete
id=
"deleteByDomainIdAndType"
>
delete from t_atta_info where domain_id=#{domainId} and relation_type = #{relationType}
delete from t_atta_info where domain_id=#{domainId} and relation_type = #{relationType}
</delete>
</delete>
...
@@ -134,6 +139,12 @@
...
@@ -134,6 +139,12 @@
<delete
id=
"deleteByDomainIdAndOther"
>
<delete
id=
"deleteByDomainIdAndOther"
>
delete from t_atta_info where domain_id=#{domainId} and relation_type not in ('0','2','26','27')
delete from t_atta_info where domain_id=#{domainId} and relation_type not in ('0','2','26','27')
</delete>
</delete>
<!-- 简档,仅删除身份证附件和(21(预入职申明签名);22(预入职确认签名);23(预入职pdf文) -->
<delete
id=
"deleteByDomainIdCard"
>
delete from t_atta_info where domain_id=#{domainId} and relation_type in ('9','24','21','22','23')
</delete>
<select
id=
"getAttInfoByParam"
resultType=
"com.yifu.cloud.plus.v1.yifu.archives.vo.TAttaInfoVo"
>
<select
id=
"getAttInfoByParam"
resultType=
"com.yifu.cloud.plus.v1.yifu.archives.vo.TAttaInfoVo"
>
SELECT
SELECT
b.id,
b.id,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment