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
a8cb5cc5
Commit
a8cb5cc5
authored
Oct 22, 2025
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huych-社保自动化相关提交
parent
a6f0556e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
8 deletions
+11
-8
TEmployeeContractPreController.java
...u/archives/controller/TEmployeeContractPreController.java
+2
-2
TEmployeeContractPreService.java
...v1/yifu/archives/service/TEmployeeContractPreService.java
+1
-1
TEmployeeContractPreServiceImpl.java
...rchives/service/impl/TEmployeeContractPreServiceImpl.java
+2
-2
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+6
-3
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TEmployeeContractPreController.java
View file @
a8cb5cc5
...
...
@@ -322,7 +322,7 @@ public class TEmployeeContractPreController {
**/
@Operation
(
description
=
"一键催办"
)
@PostMapping
(
"/contractUrg"
)
public
R
contractUrg
(
@RequestBody
List
<
String
>
idList
)
{
return
tEmployeeContractPreService
.
contractUrg
(
id
List
);
public
R
contractUrg
(
@RequestBody
String
id
)
{
return
tEmployeeContractPreService
.
contractUrg
(
id
);
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/TEmployeeContractPreService.java
View file @
a8cb5cc5
...
...
@@ -102,5 +102,5 @@ public interface TEmployeeContractPreService extends IService<TEmployeeContractP
* @param idList id集合
* @return
*/
R
contractUrg
(
List
<
String
>
idList
);
R
contractUrg
(
String
id
);
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TEmployeeContractPreServiceImpl.java
View file @
a8cb5cc5
...
...
@@ -1073,11 +1073,11 @@ public class TEmployeeContractPreServiceImpl extends ServiceImpl<TEmployeeContra
}
@Override
public
R
contractUrg
(
List
<
String
>
idList
)
{
public
R
contractUrg
(
String
id
)
{
// 查询所有待催办的合同
List
<
TContractAutoLog
>
signingContracts
=
contractAutoLogService
.
list
(
Wrappers
.<
TContractAutoLog
>
query
()
.
lambda
()
.
in
(
TContractAutoLog:
:
getId
,
idList
)
.
eq
(
TContractAutoLog:
:
getContractId
,
id
)
);
if
(
Common
.
isNotNull
(
signingContracts
)
&&
signingContracts
.
size
()
>
0
)
{
try
{
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
View file @
a8cb5cc5
...
...
@@ -1339,7 +1339,10 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
boolean
injury
)
{
// 是否SSC:SSC派单组-1659015946137583618L SSC审核组-1659016108176130049L
long
roleId
=
1659015946137583618L
;
boolean
isSsc
=
haveRole
(
user
,
roleId
);
boolean
isSsc
=
false
;
if
(
null
!=
user
)
{
isSsc
=
haveRole
(
user
,
roleId
);
}
TDispatchInfo
dispatch
=
new
TDispatchInfo
();
// 初始化派单项
dispatch
.
setOrderId
(
excel
.
getOrderId
());
...
...
@@ -1352,7 +1355,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
}
else
{
dispatch
.
setContactAddress
(
excel
.
getContactAddress
());
}
dispatch
.
setOrganName
(
user
.
getDeptName
());
dispatch
.
setOrganName
(
null
==
user
?
"自动化派单部门"
:
user
.
getDeptName
());
if
(
Common
.
isNotNull
(
excel
.
getPreId
()))
{
dispatch
.
setPreId
(
excel
.
getPreId
());
}
...
...
@@ -1368,7 +1371,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
dispatch
.
setTryPeriod
(
excel
.
getTryPeriod
());
dispatch
.
setEmpMobile
(
excel
.
getEmpMobile
());
dispatch
.
setType
(
CommonConstants
.
ZERO_STRING
);
dispatch
.
setCurrentOperator
(
user
.
getNickn
ame
());
dispatch
.
setCurrentOperator
(
null
==
excel
.
getPreName
()
?
user
.
getNickname
()
:
excel
.
getPreN
ame
());
dispatch
.
setTrustRemark
(
excel
.
getTrustRemark
());
dispatch
.
setBelongUnitName
(
excel
.
getCustomerName
());
dispatch
.
setBelongUnit
(
excel
.
getCustomerId
());
...
...
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