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
ea92b265
Commit
ea92b265
authored
Nov 03, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.16-还原撤销签署状态
parent
34144adc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
TEmployeeContractPreController.java
...u/archives/controller/TEmployeeContractPreController.java
+5
-1
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TEmployeeContractPreController.java
View file @
ea92b265
...
@@ -137,13 +137,17 @@ public class TEmployeeContractPreController {
...
@@ -137,13 +137,17 @@ public class TEmployeeContractPreController {
YifuUser
user
=
SecurityUtils
.
getUser
();
YifuUser
user
=
SecurityUtils
.
getUser
();
//如果是电子签发起线下签先更新为线下签
//如果是电子签发起线下签先更新为线下签
if
(
null
!=
signType
&&
null
!=
idList
)
{
if
(
null
!=
signType
&&
null
!=
idList
)
{
TEmployeeContractPre
tEmployeeContractPre
;
// 2025-11-3 14:54:57 测试(龙弟)说发起线下签署,如果是电子签,将撤销原因,是否撤销还原到初始的
for
(
String
id
:
idList
)
{
for
(
String
id
:
idList
)
{
TEmployeeContractPre
tEmployeeContractPre
=
tEmployeeContractPreService
.
getById
(
id
);
tEmployeeContractPre
=
tEmployeeContractPreService
.
getById
(
id
);
if
(
tEmployeeContractPre
!=
null
&&
"0"
.
equals
(
tEmployeeContractPre
.
getSignType
()))
{
if
(
tEmployeeContractPre
!=
null
&&
"0"
.
equals
(
tEmployeeContractPre
.
getSignType
()))
{
tEmployeeContractPre
.
setSignType
(
"1"
);
tEmployeeContractPre
.
setSignType
(
"1"
);
tEmployeeContractPre
.
setChangeTypeReason
(
"手动派单转为线下签"
);
tEmployeeContractPre
.
setChangeTypeReason
(
"手动派单转为线下签"
);
tEmployeeContractPre
.
setChangeTypeUser
(
user
.
getNickname
());
tEmployeeContractPre
.
setChangeTypeUser
(
user
.
getNickname
());
tEmployeeContractPre
.
setChangeTypeTime
(
DateUtil
.
getCurrentDateTime
());
tEmployeeContractPre
.
setChangeTypeTime
(
DateUtil
.
getCurrentDateTime
());
tEmployeeContractPre
.
setSignFlag
(
CommonConstants
.
ONE_STRING
);
tEmployeeContractPre
.
setRevokeReason
(
""
);
tEmployeeContractPreService
.
updateById
(
tEmployeeContractPre
);
tEmployeeContractPreService
.
updateById
(
tEmployeeContractPre
);
}
}
}
}
...
...
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