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
524d9295
Commit
524d9295
authored
Mar 27, 2025
by
huyuchen
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.7.8' into MVP1.7.8
parents
cee73b57
f3fcad63
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
9 deletions
+14
-9
SysAutoDictItemController.java
...1/yifu/archives/controller/SysAutoDictItemController.java
+1
-0
SysAutoDictItemServiceImpl.java
...ifu/archives/service/impl/SysAutoDictItemServiceImpl.java
+1
-0
TPreEmpMainServiceImpl.java
...v1/yifu/archives/service/impl/TPreEmpMainServiceImpl.java
+10
-7
ExcelUtil.java
...m/yifu/cloud/plus/v1/yifu/common/core/util/ExcelUtil.java
+2
-2
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/SysAutoDictItemController.java
View file @
524d9295
...
...
@@ -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
);
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/SysAutoDictItemServiceImpl.java
View file @
524d9295
...
...
@@ -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
());
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TPreEmpMainServiceImpl.java
View file @
524d9295
...
...
@@ -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
);
...
...
yifu-common/yifu-common-core/src/main/java/com/yifu/cloud/plus/v1/yifu/common/core/util/ExcelUtil.java
View file @
524d9295
...
...
@@ -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
);
...
...
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