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
d24d5221
Commit
d24d5221
authored
Nov 22, 2022
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目档案批量操作速度优化
parent
ab491d0b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
29 deletions
+42
-29
TPaymentInfoServiceImpl.java
.../v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java
+35
-21
TPaymentInfoMapper.xml
...cial-biz/src/main/resources/mapper/TPaymentInfoMapper.xml
+7
-8
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java
View file @
d24d5221
...
...
@@ -2439,7 +2439,6 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
/**
* 薪资获取缴费库
*
* @Author hgw
* @Date 2022-8-10 18:06:13
**/
...
...
@@ -2578,48 +2577,52 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
}
public
void
createPaymentSocialInfoReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
if
(
Common
.
isNotNull
(
user
))
{
searchVo
.
setCreateBy
(
user
.
getId
());
}
//获取所有未推送的社保实缴明细数据
List
<
TPaymentInfo
>
unPushInfo
=
baseMapper
.
getTPaymentSocialPushInfo
(
searchVo
);
if
(
Common
.
isNotNull
(
unPushInfo
))
{
//推送数据封装并推送
initEkpPushSocialParam
(
unPushInfo
);
List
<
TPaymentInfo
>
list
=
unPushInfo
.
stream
().
filter
(
e
->
findList
(
e
,
user
)).
collect
(
Collectors
.
toList
());
unPushInfo
.
clear
();
if
(
Common
.
isNotNull
(
list
))
{
//推送数据封装并推送
initEkpPushSocialParam
(
list
);
}
}
}
public
void
createPaymentFundInfoReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
if
(
Common
.
isNotNull
(
user
))
{
searchVo
.
setCreateBy
(
user
.
getId
());
}
//获取所有未推送的公积金实缴明细数据
List
<
TPaymentInfo
>
unPushInfo
=
baseMapper
.
getTPaymentFundPushInfo
(
searchVo
);
if
(
Common
.
isNotNull
(
unPushInfo
))
{
//推送数据封装并推送
initEkpPushFundParam
(
unPushInfo
);
List
<
TPaymentInfo
>
list
=
unPushInfo
.
stream
().
filter
(
e
->
findList
(
e
,
user
)).
collect
(
Collectors
.
toList
());
unPushInfo
.
clear
();
if
(
Common
.
isNotNull
(
list
))
{
//推送数据封装并推送
initEkpPushFundParam
(
list
);
}
}
}
public
void
createPaymentInfoIncomeReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
if
(
Common
.
isNotNull
(
user
))
{
searchVo
.
setCreateBy
(
user
.
getId
());
}
List
<
TPaymentInfo
>
sumList
=
baseMapper
.
getTPaymentSocialIncomeInfo
(
searchVo
);
if
(
Common
.
isNotNull
(
sumList
))
{
//生成收入
createIncomeInfo
(
sumList
,
CommonConstants
.
ONE_STRING
);
List
<
TPaymentInfo
>
list
=
sumList
.
stream
().
filter
(
e
->
findList
(
e
,
user
)).
collect
(
Collectors
.
toList
());
sumList
.
clear
();
if
(
Common
.
isNotNull
(
list
))
{
//生成收入
createIncomeInfo
(
list
,
CommonConstants
.
ONE_STRING
);
}
}
}
public
void
createPaymentFundIncomeReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
if
(
Common
.
isNotNull
(
user
))
{
searchVo
.
setCreateBy
(
user
.
getId
());
}
List
<
TPaymentInfo
>
sumList
=
baseMapper
.
getTPaymentFundIncomeInfo
(
searchVo
);
if
(
Common
.
isNotNull
(
sumList
))
{
//生成公积金收入
createIncomeInfo
(
sumList
,
CommonConstants
.
TWO_STRING
);
List
<
TPaymentInfo
>
list
=
sumList
.
stream
().
filter
(
e
->
findList
(
e
,
user
)).
collect
(
Collectors
.
toList
());
sumList
.
clear
();
if
(
Common
.
isNotNull
(
list
))
{
//生成公积金收入
createIncomeInfo
(
list
,
CommonConstants
.
TWO_STRING
);
}
}
}
...
...
@@ -3150,6 +3153,10 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
incomeService
.
saveBathDetail
(
detail
,
library
);
}
/**
* @Description: 推送ekp时更改日期格式
* @Author: huyc
**/
public
String
dateStringInsert
(
String
month
)
{
StringBuilder
sb
=
new
StringBuilder
(
month
);
sb
.
insert
(
4
,
"-"
);
...
...
@@ -3279,4 +3286,11 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
}
}
/**
* @Description: 手动推送时筛选数据
* @Author: huyc
**/
public
boolean
findList
(
TPaymentInfo
t
,
YifuUser
user
)
{
return
CommonConstants
.
ONE_STRING
.
equals
(
t
.
getLockStatus
())
&&
user
.
getId
().
equals
(
t
.
getCreateBy
());
}
}
yifu-social/yifu-social-biz/src/main/resources/mapper/TPaymentInfoMapper.xml
View file @
d24d5221
...
...
@@ -604,6 +604,9 @@
<if
test=
"tPaymentInfo.createTimeStart != null and tPaymentInfo.createTimeEnd != null"
>
AND a.CREATE_TIME BETWEEN #{tPaymentInfo.createTimeStart} AND #{tPaymentInfo.createTimeEnd}
</if>
<if
test=
"tPaymentInfo.lockStatus != null and tPaymentInfo.lockStatus.trim() != ''"
>
AND a.LOCK_STATUS = #{tPaymentInfo.lockStatus}
</if>
</if>
</if>
</sql>
...
...
@@ -1239,8 +1242,7 @@
<include
refid=
"Base_Column_List"
/>
FROM t_payment_info a
<where>
a.LOCK_STATUS = '1' AND a.CREATE_BY = #{tPaymentInfo.createBy}
AND a.PUSH_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL
a.PUSH_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</select>
...
...
@@ -1251,8 +1253,7 @@
<include
refid=
"Base_Column_List"
/>
FROM t_payment_info a
<where>
a.LOCK_STATUS = '1' AND a.CREATE_BY = #{tPaymentInfo.createBy}
AND a.PUSH_STATUS = '1' AND a.FUND_ID IS NOT NULL
a.PUSH_STATUS = '1' AND a.FUND_ID IS NOT NULL
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</select>
...
...
@@ -1263,8 +1264,7 @@
<include
refid=
"Base_Column_List"
/>
FROM t_payment_info a
<where>
a.LOCK_STATUS = '1' AND a.CREATE_BY = #{tPaymentInfo.createBy}
AND a.INCOME_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL
a.INCOME_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</select>
...
...
@@ -1275,8 +1275,7 @@
<include
refid=
"Base_Column_List"
/>
FROM t_payment_info a
<where>
a.LOCK_STATUS = '1' AND a.CREATE_BY = #{tPaymentInfo.createBy}
AND a.INCOME_STATUS = '1' AND a.FUND_ID IS NOT NULL
a.INCOME_STATUS = '1' AND a.FUND_ID IS NOT NULL
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</select>
...
...
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