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
f36ae495
Commit
f36ae495
authored
Apr 01, 2025
by
wangpeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
预估数据生成调优-- fxj
parent
ad5791da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
TForecastLibraryServiceImpl.java
...yifu/social/service/impl/TForecastLibraryServiceImpl.java
+12
-3
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TForecastLibraryServiceImpl.java
View file @
f36ae495
...
...
@@ -25,6 +25,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeContractInfo
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TSettleDomain
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.TSettleDomainListVo
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.TSettleDomainSelectVo
;
...
...
@@ -2195,7 +2196,12 @@ public class TForecastLibraryServiceImpl extends ServiceImpl<TForecastLibraryMap
while
(
true
)
{
pageInfo
=
new
Page
<>(
page
,
pageSize
);
batch
=
socialFundInfoMapper
.
selectPage
(
pageInfo
,
Wrappers
.<
TSocialFundInfo
>
query
().
lambda
()).
getRecords
();
Wrappers
.<
TSocialFundInfo
>
query
().
lambda
()
.
and
(
obj
->
obj
.
isNotNull
(
TSocialFundInfo:
:
getSettleDomainCode
)
.
or
()
.
isNotNull
(
TSocialFundInfo:
:
getSettleDomainCodeFund
)
)
).
getRecords
();
if
(
batch
==
null
||
batch
.
isEmpty
())
{
break
;
// 明确退出条件
...
...
@@ -2204,7 +2210,11 @@ public class TForecastLibraryServiceImpl extends ServiceImpl<TForecastLibraryMap
// 并行处理,确保线程安全性
batch
.
parallelStream
().
forEach
(
socialFundInfo
->
{
try
{
everyMonthCreateForecastLibaryCore
(
payMonth
,
socialFundInfo
,
mapSelectVo
);
// 异常场景:有公积金无社保数据,可通过身份证或结算主体页面重新生成数据
String
deptNo
=
null
==
socialFundInfo
.
getSettleDomainCode
()?
socialFundInfo
.
getSettleDomainCodeFund
():
socialFundInfo
.
getSettleDomainCode
();
if
(
Common
.
isNotNull
(
deptNo
)
&&
null
!=
mapSelectVo
.
get
(
deptNo
)){
everyMonthCreateForecastLibaryCore
(
payMonth
,
socialFundInfo
,
mapSelectVo
);
}
}
catch
(
Exception
e
)
{
// 捕获并记录单个处理中的异常,避免影响其他数据
log
.
error
(
"Error processing socialFundInfo: "
+
socialFundInfo
.
getId
()
+
", Exception: "
+
e
.
getMessage
());
...
...
@@ -2339,7 +2349,6 @@ public class TForecastLibraryServiceImpl extends ServiceImpl<TForecastLibraryMap
List
<
TForecastLibrary
>
libraryFundInfoListSocial
=
new
ArrayList
<>();
List
<
TForecastLibrary
>
libraryFundInfoListFund
=
new
ArrayList
<>();
//社保收入
//Map<String,TSettleDomainSelectVo> mapSelectVo = this.getSelectVoMap();
String
redisKey
=
String
.
valueOf
(
UUID
.
randomUUID
()).
replaceAll
(
"-"
,
""
)
+
"_incomePush"
;
if
(
Common
.
isNotNull
(
socialFundInfo
.
getSocialId
())
&&
CommonConstants
.
FOUR_STRING
.
equals
(
socialFundInfo
.
getSocialStatus
())
...
...
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