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
823e8ea4
Commit
823e8ea4
authored
Oct 20, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
社保办理失败推送微信-fxj
parent
81393e62
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
TSocialAlertInfoServiceImpl.java
...yifu/social/service/impl/TSocialAlertInfoServiceImpl.java
+11
-4
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TSocialAlertInfoServiceImpl.java
View file @
823e8ea4
...
@@ -168,15 +168,22 @@ public class TSocialAlertInfoServiceImpl extends ServiceImpl<TSocialAlertInfoMap
...
@@ -168,15 +168,22 @@ public class TSocialAlertInfoServiceImpl extends ServiceImpl<TSocialAlertInfoMap
socialCount
=
socialCountMap
.
getOrDefault
(
key
,
0L
);
socialCount
=
socialCountMap
.
getOrDefault
(
key
,
0L
);
fundCount
=
fundCountMap
.
getOrDefault
(
key
,
0L
);
fundCount
=
fundCountMap
.
getOrDefault
(
key
,
0L
);
message
=
new
StringBuilder
();
message
=
new
StringBuilder
();
//提示信息拼接,社保公积金都有值提示:当前存在社保派单失败数量:10,当前存在公积金派单失败数量:10。请及时至HRO系统进行处理
//提示信息社保没有值提示:当前存在派单失败数量:10。请及时至HRO系统进行处理
//提示信息公积金没有值提示:当前存在公积金派单失败数量:10。请及时至HRO系统进行处理
boolean
hasAppend
=
false
;
if
(
socialCount
>
0
)
{
if
(
socialCount
>
0
)
{
message
.
append
(
"当前存在社保派单失败数量:"
)
message
.
append
(
"当前存在社保派单失败数量:"
)
.
append
(
socialCount
)
.
append
(
socialCount
)
;
.
append
(
","
)
;
hasAppend
=
true
;
}
}
if
(
fundCount
>
0
)
{
if
(
fundCount
>
0
)
{
if
(
hasAppend
)
{
message
.
append
(
","
);
}
message
.
append
(
"当前存在公积金派单失败数量:"
)
message
.
append
(
"当前存在公积金派单失败数量:"
)
.
append
(
fundCount
)
.
append
(
fundCount
)
;
.
append
(
","
)
;
hasAppend
=
true
;
}
}
message
.
append
(
"。请及时至HRO系统进行处理"
);
message
.
append
(
"。请及时至HRO系统进行处理"
);
countMap
.
put
(
key
,
message
);
countMap
.
put
(
key
,
message
);
...
...
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