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
4db34875
Commit
4db34875
authored
Mar 27, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.7.8' into MVP1.7.8
parents
390a1c28
8d03f0f5
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
203 additions
and
3 deletions
+203
-3
EmployeeRegistrationPreVo.java
...d/plus/v1/yifu/archives/vo/EmployeeRegistrationPreVo.java
+4
-0
EmployeeRegistrationPreServiceImpl.java
...ives/service/impl/EmployeeRegistrationPreServiceImpl.java
+141
-3
EmployeeRegistrationSearchVo.java
...fu/cloud/plus/v1/csp/vo/EmployeeRegistrationSearchVo.java
+4
-0
EmployeeRegistrationController.java
...lus/v1/csp/controller/EmployeeRegistrationController.java
+14
-0
EmployeeRegistrationMapper.java
.../cloud/plus/v1/csp/mapper/EmployeeRegistrationMapper.java
+2
-0
EmployeeRegistrationService.java
...loud/plus/v1/csp/service/EmployeeRegistrationService.java
+7
-0
EmployeeRegistrationServiceImpl.java
.../v1/csp/service/impl/EmployeeRegistrationServiceImpl.java
+14
-0
EmployeeRegistrationMapper.xml
.../src/main/resources/mapper/EmployeeRegistrationMapper.xml
+17
-0
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/EmployeeRegistrationPreVo.java
View file @
4db34875
...
@@ -7,6 +7,7 @@ import lombok.Data;
...
@@ -7,6 +7,7 @@ import lombok.Data;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
/**
/**
* 确认接受vo
* 确认接受vo
...
@@ -115,4 +116,7 @@ public class EmployeeRegistrationPreVo implements Serializable {
...
@@ -115,4 +116,7 @@ public class EmployeeRegistrationPreVo implements Serializable {
@Schema
(
description
=
"更新人"
)
@Schema
(
description
=
"更新人"
)
private
String
updateBy
;
private
String
updateBy
;
@Schema
(
description
=
"身份证合集"
)
private
List
<
String
>
idcardList
;
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/EmployeeRegistrationPreServiceImpl.java
View file @
4db34875
...
@@ -228,8 +228,104 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
...
@@ -228,8 +228,104 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
.
last
(
CommonConstants
.
LAST_ONE_SQL
));
.
last
(
CommonConstants
.
LAST_ONE_SQL
));
EmployeeRegistrationPre
pre
=
new
EmployeeRegistrationPre
();
EmployeeRegistrationPre
pre
=
new
EmployeeRegistrationPre
();
BeanUtils
.
copyProperties
(
preVo
,
pre
);
BeanUtils
.
copyProperties
(
preVo
,
pre
);
if
(
Common
.
isNotNull
(
preVo
.
getExpectedCollectionTime
()))
{
pre
.
setExpectedCollectionTime
(
LocalDateTimeUtils
.
dateToLocalDateTime
(
preVo
.
getExpectedCollectionTime
()));
}
if
(
Common
.
isNotNull
(
preExit
))
{
if
(
Common
.
isNotNull
(
preExit
))
{
pre
.
setId
(
preExit
.
getId
());
pre
.
setId
(
preExit
.
getId
());
String
natureItemBefore
=
null
;
String
natureItemAfter
=
null
;
String
contractItemBefore
=
null
;
String
contractItemAfter
=
null
;
String
contractXfBefore
=
null
;
String
contractXfAfter
=
null
;
if
(!
preExit
.
getContractType
().
equals
(
pre
.
getContractType
()))
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type"
);
for
(
Map
.
Entry
<
String
,
String
>
entry:
dicObj
.
entrySet
()){
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
preExit
.
getContractType
())){
contractItemBefore
=
entry
.
getValue
();
}
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
pre
.
getContractType
())){
contractItemAfter
=
entry
.
getValue
();
}
if
(
null
!=
contractItemBefore
&&
null
!=
contractItemAfter
)
{
break
;
}
}
}
if
(!
preExit
.
getEmpNature
().
equals
(
pre
.
getEmpNature
()))
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"emp_natrue"
);
for
(
Map
.
Entry
<
String
,
String
>
entry:
dicObj
.
entrySet
()){
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
preExit
.
getEmpNature
())){
natureItemBefore
=
entry
.
getValue
();
}
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
pre
.
getEmpNature
())){
natureItemAfter
=
entry
.
getValue
();
}
if
(
null
!=
natureItemAfter
&&
null
!=
natureItemBefore
)
{
break
;
}
}
}
if
(
null
!=
preExit
.
getContractSubName
()
&&
null
==
pre
.
getContractSubName
())
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type_sub"
);
for
(
Map
.
Entry
<
String
,
String
>
entry:
dicObj
.
entrySet
()){
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
preExit
.
getContractSubName
())){
contractXfBefore
=
entry
.
getValue
();
break
;
}
}
}
if
(
null
==
preExit
.
getContractSubName
()
&&
null
!=
pre
.
getContractSubName
())
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type_sub"
);
for
(
Map
.
Entry
<
String
,
String
>
entry:
dicObj
.
entrySet
()){
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
pre
.
getContractSubName
())){
contractXfAfter
=
entry
.
getValue
();
break
;
}
}
}
if
(
null
!=
preExit
.
getContractSubName
()
&&
null
!=
pre
.
getContractSubName
()
&&
!
preExit
.
getContractSubName
().
equals
(
pre
.
getContractSubName
()))
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type_sub"
);
for
(
Map
.
Entry
<
String
,
String
>
entry:
dicObj
.
entrySet
()){
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
preExit
.
getContractSubName
())){
contractXfBefore
=
entry
.
getValue
();
}
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
pre
.
getContractSubName
())){
contractXfAfter
=
entry
.
getValue
();
}
if
(
null
!=
contractXfBefore
&&
null
!=
contractXfAfter
)
{
break
;
}
}
}
if
(
null
!=
natureItemBefore
)
{
preExit
.
setEmpNature
(
natureItemBefore
);
}
if
(
null
!=
natureItemAfter
)
{
pre
.
setEmpNature
(
natureItemAfter
);
}
if
(
null
!=
contractItemBefore
)
{
preExit
.
setContractType
(
contractItemBefore
);
}
if
(
null
!=
contractItemAfter
)
{
pre
.
setContractType
(
contractItemAfter
);
}
if
(
null
!=
contractXfBefore
)
{
preExit
.
setContractSubName
(
contractXfBefore
);
}
if
(
null
!=
contractXfAfter
)
{
pre
.
setContractSubName
(
contractXfAfter
);
}
tEmployeeLogService
.
saveModificationRecord
(
CommonConstants
.
dingleDigitIntArray
[
4
],
pre
.
getId
().
toString
(),
""
,
preExit
,
pre
);
baseMapper
.
deleteById
(
preExit
);
baseMapper
.
deleteById
(
preExit
);
// if (Common.isNotNull(preVo.getServerItem())) {
// if (Common.isNotNull(preVo.getServerItem())) {
// pre.setServerItem(preVo.getServerItem());
// pre.setServerItem(preVo.getServerItem());
...
@@ -268,9 +364,6 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
...
@@ -268,9 +364,6 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
// pre.setContractSubName(null);
// pre.setContractSubName(null);
// }
// }
}
}
if
(
Common
.
isNotNull
(
preVo
.
getExpectedCollectionTime
()))
{
pre
.
setExpectedCollectionTime
(
LocalDateTimeUtils
.
dateToLocalDateTime
(
preVo
.
getExpectedCollectionTime
()));
}
baseMapper
.
insert
(
pre
);
baseMapper
.
insert
(
pre
);
if
(
Common
.
isNotNull
(
preVo
.
getExpectedCollectionTime
()))
{
if
(
Common
.
isNotNull
(
preVo
.
getExpectedCollectionTime
()))
{
// 事务提交后触发调度
// 事务提交后触发调度
...
@@ -328,6 +421,8 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
...
@@ -328,6 +421,8 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
String
natureItemAfter
=
null
;
String
natureItemAfter
=
null
;
String
contractItemBefore
=
null
;
String
contractItemBefore
=
null
;
String
contractItemAfter
=
null
;
String
contractItemAfter
=
null
;
String
contractXfBefore
=
null
;
String
contractXfAfter
=
null
;
if
(!
comparePre
.
getContractType
().
equals
(
employeeRegistrationPre
.
getContractType
()))
{
if
(!
comparePre
.
getContractType
().
equals
(
employeeRegistrationPre
.
getContractType
()))
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type"
);
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type"
);
...
@@ -358,6 +453,42 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
...
@@ -358,6 +453,42 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
}
}
}
}
}
}
if
(
null
!=
comparePre
.
getContractSubName
()
&&
null
==
employeeRegistrationPre
.
getContractSubName
())
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type_sub"
);
for
(
Map
.
Entry
<
String
,
String
>
entry:
dicObj
.
entrySet
()){
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
comparePre
.
getContractSubName
())){
contractXfBefore
=
entry
.
getValue
();
break
;
}
}
}
if
(
null
==
comparePre
.
getContractSubName
()
&&
null
!=
employeeRegistrationPre
.
getContractSubName
())
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type_sub"
);
for
(
Map
.
Entry
<
String
,
String
>
entry:
dicObj
.
entrySet
()){
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
employeeRegistrationPre
.
getContractSubName
())){
contractXfAfter
=
entry
.
getValue
();
break
;
}
}
}
if
(
null
!=
comparePre
.
getContractSubName
()
&&
null
!=
employeeRegistrationPre
.
getContractSubName
()
&&
!
comparePre
.
getContractSubName
().
equals
(
employeeRegistrationPre
.
getContractSubName
()))
{
Map
<
String
,
String
>
dicObj
=
(
Map
<
String
,
String
>)
RedisUtil
.
redis
.
opsForValue
().
get
(
CacheConstants
.
DICT_DETAILS
+
CommonConstants
.
COLON_STRING
+
"personnel_type_sub"
);
for
(
Map
.
Entry
<
String
,
String
>
entry:
dicObj
.
entrySet
()){
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
comparePre
.
getContractSubName
())){
contractXfBefore
=
entry
.
getValue
();
}
if
(
Common
.
isNotNull
(
entry
.
getKey
())
&&
entry
.
getKey
().
equals
(
employeeRegistrationPre
.
getContractSubName
())){
contractXfAfter
=
entry
.
getValue
();
}
if
(
null
!=
contractXfBefore
&&
null
!=
contractXfAfter
)
{
break
;
}
}
}
YifuUser
user
=
SecurityUtils
.
getUser
();
YifuUser
user
=
SecurityUtils
.
getUser
();
try
{
try
{
updatePre
.
setServerItem
(
employeeRegistrationPre
.
getServerItem
());
updatePre
.
setServerItem
(
employeeRegistrationPre
.
getServerItem
());
...
@@ -366,6 +497,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
...
@@ -366,6 +497,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
updatePre
.
setFileProvince
(
employeeRegistrationPre
.
getFileProvince
());
updatePre
.
setFileProvince
(
employeeRegistrationPre
.
getFileProvince
());
updatePre
.
setFileCity
(
employeeRegistrationPre
.
getFileCity
());
updatePre
.
setFileCity
(
employeeRegistrationPre
.
getFileCity
());
updatePre
.
setFileTown
(
employeeRegistrationPre
.
getFileTown
());
updatePre
.
setFileTown
(
employeeRegistrationPre
.
getFileTown
());
updatePre
.
setContractSubName
(
null
==
employeeRegistrationPre
.
getContractSubName
()
?
""
:
employeeRegistrationPre
.
getContractSubName
());
baseMapper
.
updateById
(
employeeRegistrationPre
);
baseMapper
.
updateById
(
employeeRegistrationPre
);
if
(
null
!=
natureItemBefore
)
{
if
(
null
!=
natureItemBefore
)
{
comparePre
.
setEmpNature
(
natureItemBefore
);
comparePre
.
setEmpNature
(
natureItemBefore
);
...
@@ -379,6 +511,12 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
...
@@ -379,6 +511,12 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
if
(
null
!=
contractItemAfter
)
{
if
(
null
!=
contractItemAfter
)
{
employeeRegistrationPre
.
setContractType
(
contractItemAfter
);
employeeRegistrationPre
.
setContractType
(
contractItemAfter
);
}
}
if
(
null
!=
contractXfBefore
)
{
comparePre
.
setContractSubName
(
contractXfBefore
);
}
if
(
null
!=
contractXfAfter
)
{
employeeRegistrationPre
.
setContractSubName
(
contractXfAfter
);
}
tEmployeeLogService
.
saveModificationRecord
(
CommonConstants
.
dingleDigitIntArray
[
4
],
tEmployeeLogService
.
saveModificationRecord
(
CommonConstants
.
dingleDigitIntArray
[
4
],
employeeRegistrationPre
.
getId
().
toString
(),
""
,
comparePre
,
employeeRegistrationPre
,
user
);
employeeRegistrationPre
.
getId
().
toString
(),
""
,
comparePre
,
employeeRegistrationPre
,
user
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
...
...
yifu-csp/yifu-csp-api/src/main/java/com/yifu/cloud/plus/v1/csp/vo/EmployeeRegistrationSearchVo.java
View file @
4db34875
...
@@ -86,4 +86,8 @@ public class EmployeeRegistrationSearchVo extends EmployeeRegistration {
...
@@ -86,4 +86,8 @@ public class EmployeeRegistrationSearchVo extends EmployeeRegistration {
@Schema
(
description
=
"列表类型 1 待办 2监控"
)
@Schema
(
description
=
"列表类型 1 待办 2监控"
)
private
String
type
;
private
String
type
;
@Schema
(
description
=
"身份证合集"
)
@TableField
(
exist
=
false
)
private
List
<
String
>
idcardList
;
}
}
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/controller/EmployeeRegistrationController.java
View file @
4db34875
...
@@ -249,6 +249,20 @@ public class EmployeeRegistrationController {
...
@@ -249,6 +249,20 @@ public class EmployeeRegistrationController {
return
new
R
<>(
employeeRegistrationService
.
getHrConfirmEmployeeRegistrationPage
(
page
,
employeeRegistration
));
return
new
R
<>(
employeeRegistrationService
.
getHrConfirmEmployeeRegistrationPage
(
page
,
employeeRegistration
));
}
}
/**
* 入职待确认列表查询身份证
*
* @param employeeRegistration 入离职登记表
* @return
*/
@Operation
(
description
=
"入职待确认列表简单分页查询"
)
@GetMapping
(
"/hrConfirmIdcardList"
)
public
R
<
List
<
String
>>
getHrConfirmIdcardList
(
EmployeeRegistrationSearchVo
employeeRegistration
)
{
YifuUser
user
=
SecurityUtils
.
getUser
();
menuUtil
.
setAuthSql
(
user
,
employeeRegistration
);
return
R
.
ok
(
employeeRegistrationService
.
getHrConfirmIdcardList
(
employeeRegistration
));
}
/**
/**
* 入职待确认表 批量导出
* 入职待确认表 批量导出
*
*
...
...
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/mapper/EmployeeRegistrationMapper.java
View file @
4db34875
...
@@ -27,6 +27,8 @@ public interface EmployeeRegistrationMapper extends BaseMapper<EmployeeRegistrat
...
@@ -27,6 +27,8 @@ public interface EmployeeRegistrationMapper extends BaseMapper<EmployeeRegistrat
*/
*/
IPage
<
EmployeeRegistration
>
getEmployeeRegistrationPage
(
Page
<
EmployeeRegistration
>
page
,
@Param
(
"employeeRegistration"
)
EmployeeRegistrationSearchVo
employeeRegistration
);
IPage
<
EmployeeRegistration
>
getEmployeeRegistrationPage
(
Page
<
EmployeeRegistration
>
page
,
@Param
(
"employeeRegistration"
)
EmployeeRegistrationSearchVo
employeeRegistration
);
List
<
String
>
getHrConfirmIdcardList
(
@Param
(
"employeeRegistration"
)
EmployeeRegistrationSearchVo
employeeRegistration
);
List
<
EmployeeRegistration
>
getEmployeeRegistrationList
(
@Param
(
"employeeRegistration"
)
EmployeeRegistrationSearchVo
employeeRegistration
);
List
<
EmployeeRegistration
>
getEmployeeRegistrationList
(
@Param
(
"employeeRegistration"
)
EmployeeRegistrationSearchVo
employeeRegistration
);
long
selectExportCount
(
@Param
(
"employeeRegistration"
)
EmployeeRegistrationSearchVo
employeeRegistration
);
long
selectExportCount
(
@Param
(
"employeeRegistration"
)
EmployeeRegistrationSearchVo
employeeRegistration
);
...
...
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/service/EmployeeRegistrationService.java
View file @
4db34875
...
@@ -111,6 +111,13 @@ public interface EmployeeRegistrationService extends IService<EmployeeRegistrati
...
@@ -111,6 +111,13 @@ public interface EmployeeRegistrationService extends IService<EmployeeRegistrati
*/
*/
void
hrConfirmExport
(
HttpServletResponse
response
,
EmployeeRegistrationSearchVo
searchVo
);
void
hrConfirmExport
(
HttpServletResponse
response
,
EmployeeRegistrationSearchVo
searchVo
);
/**
* 入职待确认身份证查询
* @param searchVo 入离职登记
* @return
*/
List
<
String
>
getHrConfirmIdcardList
(
EmployeeRegistrationSearchVo
searchVo
);
/**
/**
* 入职待确认表确认接收
* 入职待确认表确认接收
* @param preVo 入离职登记
* @param preVo 入离职登记
...
...
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/service/impl/EmployeeRegistrationServiceImpl.java
View file @
4db34875
...
@@ -146,6 +146,17 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
...
@@ -146,6 +146,17 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
return
baseMapper
.
getEmployeeRegistrationPage
(
page
,
employeeRegistration
);
return
baseMapper
.
getEmployeeRegistrationPage
(
page
,
employeeRegistration
);
}
}
@Override
public
List
<
String
>
getHrConfirmIdcardList
(
EmployeeRegistrationSearchVo
searchVo
)
{
//权限和条件赋值
initSearchVo
(
searchVo
);
if
(
Common
.
isEmpty
(
searchVo
.
getStatusList
()))
{
searchVo
.
setStatusList
(
CommonConstants
.
processPreStatus
);
}
searchVo
.
setTypeList
(
CommonConstants
.
processPreStatus
);
return
baseMapper
.
getHrConfirmIdcardList
(
searchVo
);
}
/**
/**
* 入离职登记表批量导出
* 入离职登记表批量导出
*
*
...
@@ -570,6 +581,9 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
...
@@ -570,6 +581,9 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
searchVo
.
setStatusList
(
CommonConstants
.
processPreStatus
);
searchVo
.
setStatusList
(
CommonConstants
.
processPreStatus
);
searchVo
.
setTypeList
(
CommonConstants
.
processPreStatus
);
searchVo
.
setTypeList
(
CommonConstants
.
processPreStatus
);
searchVo
.
setDeptNo
(
preVo
.
getDeptNo
());
searchVo
.
setDeptNo
(
preVo
.
getDeptNo
());
if
(
Common
.
isNotNull
(
preVo
.
getIdcardList
()))
{
searchVo
.
setIdcardList
(
preVo
.
getIdcardList
());
}
List
<
EmployeeRegistration
>
registrationList
=
baseMapper
.
getEmployeeRegistrationList
(
searchVo
);
List
<
EmployeeRegistration
>
registrationList
=
baseMapper
.
getEmployeeRegistrationList
(
searchVo
);
YifuUser
user
=
SecurityUtils
.
getUser
();
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
Common
.
isEmpty
(
registrationList
))
{
if
(
Common
.
isEmpty
(
registrationList
))
{
...
...
yifu-csp/yifu-csp-biz/src/main/resources/mapper/EmployeeRegistrationMapper.xml
View file @
4db34875
...
@@ -132,6 +132,12 @@
...
@@ -132,6 +132,12 @@
<if
test=
"employeeRegistration.empIdcard != null and employeeRegistration.empIdcard.trim() != ''"
>
<if
test=
"employeeRegistration.empIdcard != null and employeeRegistration.empIdcard.trim() != ''"
>
AND a.emp_idcard like CONCAT('%',#{employeeRegistration.empIdcard},'%')
AND a.emp_idcard like CONCAT('%',#{employeeRegistration.empIdcard},'%')
</if>
</if>
<if
test=
"employeeRegistration.idcardList != null and employeeRegistration.idcardList.size() > 0 "
>
AND a.emp_idcard in
<foreach
item=
"item"
index=
"index"
collection=
"employeeRegistration.idcardList"
open=
"("
separator=
","
close=
")"
>
'${item}'
</foreach>
</if>
<if
test=
"employeeRegistration.empPhone != null and employeeRegistration.empPhone.trim() != ''"
>
<if
test=
"employeeRegistration.empPhone != null and employeeRegistration.empPhone.trim() != ''"
>
AND a.emp_phone like CONCAT('%',#{employeeRegistration.empPhone},'%')
AND a.emp_phone like CONCAT('%',#{employeeRegistration.empPhone},'%')
</if>
</if>
...
@@ -238,6 +244,17 @@
...
@@ -238,6 +244,17 @@
order by a.create_time desc
order by a.create_time desc
</select>
</select>
<!--employeeRegistration简单分页查询-->
<select
id=
"getHrConfirmIdcardList"
resultType=
"java.lang.String"
>
SELECT
a.emp_idcard
FROM employee_registration a
<where>
1=1
<include
refid=
"employeeRegistration_where"
/>
</where>
</select>
<!--employeeRegistration简单分页查询-->
<!--employeeRegistration简单分页查询-->
<select
id=
"getEmployeeRegistrationList"
resultMap=
"employeeRegistrationMap"
>
<select
id=
"getEmployeeRegistrationList"
resultMap=
"employeeRegistrationMap"
>
SELECT
SELECT
...
...
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