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
ebd4565b
Commit
ebd4565b
authored
Dec 06, 2022
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
手动推送优化
parent
f2324292
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
142 additions
and
36 deletions
+142
-36
TPaymentInfoMapper.java
.../cloud/plus/v1/yifu/social/mapper/TPaymentInfoMapper.java
+39
-4
TPaymentInfoServiceImpl.java
.../v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java
+56
-28
TPaymentInfoMapper.xml
...cial-biz/src/main/resources/mapper/TPaymentInfoMapper.xml
+47
-4
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/mapper/TPaymentInfoMapper.java
View file @
ebd4565b
...
@@ -169,31 +169,66 @@ public interface TPaymentInfoMapper extends BaseMapper<TPaymentInfo> {
...
@@ -169,31 +169,66 @@ public interface TPaymentInfoMapper extends BaseMapper<TPaymentInfo> {
* @param searchVo 缴费库
* @param searchVo 缴费库
* @return
* @return
*/
*/
List
<
TPaymentInfo
>
getTPaymentSocialPushInfo
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
);
List
<
TPaymentInfo
>
getTPaymentSocialPushInfo
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
,
@Param
(
"userId"
)
String
userId
);
/**
/**
* 缴费库公积金推送查询
* 缴费库公积金推送查询
* @param searchVo 缴费库
* @param searchVo 缴费库
* @return
* @return
*/
*/
List
<
TPaymentInfo
>
getTPaymentFundPushInfo
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
);
List
<
TPaymentInfo
>
getTPaymentFundPushInfo
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
,
@Param
(
"userId"
)
String
userId
);
/**
/**
* 缴费库社保收入推送查询
* 缴费库社保收入推送查询
* @param searchVo 缴费库
* @param searchVo 缴费库
* @return
* @return
*/
*/
List
<
TPaymentInfo
>
getTPaymentSocialIncomeInfo
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
);
List
<
TPaymentInfo
>
getTPaymentSocialIncomeInfo
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
,
@Param
(
"userId"
)
String
userId
);
/**
/**
* 缴费库公积金收入推送查询
* 缴费库公积金收入推送查询
* @param searchVo 缴费库
* @param searchVo 缴费库
* @return
* @return
*/
*/
List
<
TPaymentInfo
>
getTPaymentFundIncomeInfo
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
);
List
<
TPaymentInfo
>
getTPaymentFundIncomeInfo
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
,
@Param
(
"userId"
)
String
userId
);
void
updateBySocialPayment
(
@Param
(
"id"
)
String
id
);
void
updateBySocialPayment
(
@Param
(
"id"
)
String
id
);
void
updateBySocialIncomePayment
(
@Param
(
"id"
)
String
id
);
void
updateBySocialIncomePayment
(
@Param
(
"id"
)
String
id
);
/**
* 缴费库社保推送查询
* @param searchVo 缴费库
* @return
*/
long
getTPaymentSocialPushCount
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
,
@Param
(
"userId"
)
String
userId
);
/**
* 缴费库公积金推送查询
* @param searchVo 缴费库
* @return
*/
long
getTPaymentFundPushCount
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
,
@Param
(
"userId"
)
String
userId
);
/**
* 缴费库社保收入推送查询
* @param searchVo 缴费库
* @return
*/
long
getTPaymentSocialIncomeCount
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
,
@Param
(
"userId"
)
String
userId
);
/**
* 缴费库公积金收入推送查询
* @param searchVo 缴费库
* @return
*/
long
getTPaymentFundIncomeCount
(
@Param
(
"tPaymentInfo"
)
TPaymentInfoSearchVo
searchVo
,
@Param
(
"userId"
)
String
userId
);
}
}
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java
View file @
ebd4565b
...
@@ -2611,50 +2611,78 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
...
@@ -2611,50 +2611,78 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
public
void
createPaymentSocialInfoReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
public
void
createPaymentSocialInfoReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
//获取所有未推送的社保实缴明细数据
//获取所有未推送的社保实缴明细数据
List
<
TPaymentInfo
>
unPushInfo
=
baseMapper
.
getTPaymentSocialPushInfo
(
searchVo
);
searchVo
.
setLockStatus
(
CommonConstants
.
ONE_STRING
);
if
(
Common
.
isNotNull
(
unPushInfo
))
{
String
userId
=
user
.
getId
();
List
<
TPaymentInfo
>
list
=
unPushInfo
.
stream
().
filter
(
e
->
findList
(
e
,
user
)).
collect
(
Collectors
.
toList
());
long
count
=
baseMapper
.
getTPaymentSocialPushCount
(
searchVo
,
userId
);
unPushInfo
.
clear
();
if
(
count
>
0
)
{
if
(
Common
.
isNotNull
(
list
))
{
List
<
TPaymentInfo
>
unPushInfo
;
//推送数据封装并推送
int
i
=
(
int
)
Math
.
ceil
((
double
)
count
/
CommonConstants
.
TEN_THOUSAND_INT
);
initEkpPushSocialParam
(
list
);
for
(
int
j
=
0
;
j
<
i
;
j
++)
{
unPushInfo
=
baseMapper
.
getTPaymentSocialPushInfo
(
searchVo
,
userId
);
synchronized
(
this
)
{
if
(
Common
.
isNotNull
(
unPushInfo
))
{
//推送数据封装并推送
initEkpPushSocialParam
(
unPushInfo
);
}
}
}
}
}
}
}
}
public
void
createPaymentFundInfoReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
public
void
createPaymentFundInfoReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
//获取所有未推送的公积金实缴明细数据
//获取所有未推送的公积金实缴明细数据
List
<
TPaymentInfo
>
unPushInfo
=
baseMapper
.
getTPaymentFundPushInfo
(
searchVo
);
searchVo
.
setLockStatus
(
CommonConstants
.
ONE_STRING
);
if
(
Common
.
isNotNull
(
unPushInfo
))
{
String
userId
=
user
.
getId
();
List
<
TPaymentInfo
>
list
=
unPushInfo
.
stream
().
filter
(
e
->
findList
(
e
,
user
)).
collect
(
Collectors
.
toList
());
long
count
=
baseMapper
.
getTPaymentFundPushCount
(
searchVo
,
userId
);
unPushInfo
.
clear
();
if
(
count
>
0
)
{
if
(
Common
.
isNotNull
(
list
))
{
List
<
TPaymentInfo
>
unPushInfo
;
//推送数据封装并推送
int
i
=
(
int
)
Math
.
ceil
((
double
)
count
/
CommonConstants
.
TEN_THOUSAND_INT
);
initEkpPushFundParam
(
list
);
for
(
int
j
=
0
;
j
<
i
;
j
++)
{
unPushInfo
=
baseMapper
.
getTPaymentFundPushInfo
(
searchVo
,
userId
);
synchronized
(
this
)
{
if
(
Common
.
isNotNull
(
unPushInfo
))
{
//推送数据封装并推送
initEkpPushFundParam
(
unPushInfo
);
}
}
}
}
}
}
}
}
public
void
createPaymentInfoIncomeReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
public
void
createPaymentInfoIncomeReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
List
<
TPaymentInfo
>
sumList
=
baseMapper
.
getTPaymentSocialIncomeInfo
(
searchVo
);
searchVo
.
setLockStatus
(
CommonConstants
.
ONE_STRING
);
if
(
Common
.
isNotNull
(
sumList
))
{
String
userId
=
user
.
getId
();
List
<
TPaymentInfo
>
list
=
sumList
.
stream
().
filter
(
e
->
findList
(
e
,
user
)).
collect
(
Collectors
.
toList
());
long
count
=
baseMapper
.
getTPaymentSocialIncomeCount
(
searchVo
,
userId
);
sumList
.
clear
();
if
(
count
>
0
)
{
if
(
Common
.
isNotNull
(
list
))
{
List
<
TPaymentInfo
>
sumList
;
//生成收入
int
i
=
(
int
)
Math
.
ceil
((
double
)
count
/
CommonConstants
.
TEN_THOUSAND_INT
);
createIncomeInfo
(
list
,
CommonConstants
.
ONE_STRING
);
for
(
int
j
=
0
;
j
<
i
;
j
++)
{
sumList
=
baseMapper
.
getTPaymentSocialIncomeInfo
(
searchVo
,
userId
);
synchronized
(
this
)
{
if
(
Common
.
isNotNull
(
sumList
))
{
//生成收入
createIncomeInfo
(
sumList
,
CommonConstants
.
ONE_STRING
);
}
}
}
}
}
}
}
}
public
void
createPaymentFundIncomeReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
public
void
createPaymentFundIncomeReal
(
YifuUser
user
,
TPaymentInfoSearchVo
searchVo
)
{
List
<
TPaymentInfo
>
sumList
=
baseMapper
.
getTPaymentFundIncomeInfo
(
searchVo
);
searchVo
.
setLockStatus
(
CommonConstants
.
ONE_STRING
);
if
(
Common
.
isNotNull
(
sumList
))
{
String
userId
=
user
.
getId
();
List
<
TPaymentInfo
>
list
=
sumList
.
stream
().
filter
(
e
->
findList
(
e
,
user
)).
collect
(
Collectors
.
toList
());
long
count
=
baseMapper
.
getTPaymentFundIncomeCount
(
searchVo
,
userId
);
sumList
.
clear
();
if
(
count
>
0
)
{
if
(
Common
.
isNotNull
(
list
))
{
List
<
TPaymentInfo
>
sumList
;
//生成公积金收入
int
i
=
(
int
)
Math
.
ceil
((
double
)
count
/
CommonConstants
.
TEN_THOUSAND_INT
);
createIncomeInfo
(
list
,
CommonConstants
.
TWO_STRING
);
for
(
int
j
=
0
;
j
<
i
;
j
++)
{
sumList
=
baseMapper
.
getTPaymentFundIncomeInfo
(
searchVo
,
userId
);
synchronized
(
this
)
{
if
(
Common
.
isNotNull
(
sumList
))
{
//生成公积金收入
createIncomeInfo
(
sumList
,
CommonConstants
.
TWO_STRING
);
}
}
}
}
}
}
}
}
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TPaymentInfoMapper.xml
View file @
ebd4565b
...
@@ -1242,7 +1242,7 @@
...
@@ -1242,7 +1242,7 @@
<include
refid=
"Base_Column_List"
/>
<include
refid=
"Base_Column_List"
/>
FROM t_payment_info a
FROM t_payment_info a
<where>
<where>
a.PUSH_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL
a.PUSH_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL
AND a.CREATE_BY = #{userId}
<include
refid=
"tPaymentInfo_export_where"
/>
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</where>
</select>
</select>
...
@@ -1253,7 +1253,7 @@
...
@@ -1253,7 +1253,7 @@
<include
refid=
"Base_Column_List"
/>
<include
refid=
"Base_Column_List"
/>
FROM t_payment_info a
FROM t_payment_info a
<where>
<where>
a.PUSH_STATUS = '1' AND a.FUND_ID IS NOT NULL
a.PUSH_STATUS = '1' AND a.FUND_ID IS NOT NULL
AND a.CREATE_BY = #{userId}
<include
refid=
"tPaymentInfo_export_where"
/>
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</where>
</select>
</select>
...
@@ -1264,7 +1264,7 @@
...
@@ -1264,7 +1264,7 @@
<include
refid=
"Base_Column_List"
/>
<include
refid=
"Base_Column_List"
/>
FROM t_payment_info a
FROM t_payment_info a
<where>
<where>
a.INCOME_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL
a.INCOME_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL
AND a.CREATE_BY = #{userId}
<include
refid=
"tPaymentInfo_export_where"
/>
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</where>
</select>
</select>
...
@@ -1275,7 +1275,7 @@
...
@@ -1275,7 +1275,7 @@
<include
refid=
"Base_Column_List"
/>
<include
refid=
"Base_Column_List"
/>
FROM t_payment_info a
FROM t_payment_info a
<where>
<where>
a.INCOME_STATUS = '1' AND a.FUND_ID IS NOT NULL
a.INCOME_STATUS = '1' AND a.FUND_ID IS NOT NULL
AND a.CREATE_BY = #{userId}
<include
refid=
"tPaymentInfo_export_where"
/>
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</where>
</select>
</select>
...
@@ -1295,4 +1295,47 @@
...
@@ -1295,4 +1295,47 @@
where
where
ID = #{id}
ID = #{id}
</update>
</update>
<select
id=
"getTPaymentSocialPushCount"
resultType=
"java.lang.Long"
>
SELECT
count(1)
FROM t_payment_info a
<where>
a.PUSH_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL AND a.CREATE_BY = #{userId}
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</select>
<!--tPaymentInfo公积金推送查询-->
<select
id=
"getTPaymentFundPushCount"
resultType=
"java.lang.Long"
>
SELECT
count(1)
FROM t_payment_info a
<where>
a.PUSH_STATUS = '1' AND a.FUND_ID IS NOT NULL AND a.CREATE_BY = #{userId}
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</select>
<!--tPaymentInfo社保收入推送查询-->
<select
id=
"getTPaymentSocialIncomeCount"
resultType=
"java.lang.Long"
>
SELECT
count(1)
FROM t_payment_info a
<where>
a.INCOME_STATUS = '1' AND a.SOCIAL_ID IS NOT NULL AND a.CREATE_BY = #{userId}
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</select>
<!--tPaymentInfo公积金收入推送查询-->
<select
id=
"getTPaymentFundIncomeCount"
resultType=
"java.lang.Long"
>
SELECT
count(1)
FROM t_payment_info a
<where>
a.INCOME_STATUS = '1' AND a.FUND_ID IS NOT NULL AND a.CREATE_BY = #{userId}
<include
refid=
"tPaymentInfo_export_where"
/>
</where>
</select>
</mapper>
</mapper>
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