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
93bfe73e
Commit
93bfe73e
authored
Mar 04, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.7.7' into MVP1.7.7
parents
3903a1d8
79fcc05c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
9 deletions
+55
-9
TPaymentInfoServiceImpl.java
.../v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java
+46
-9
TPaymentInfoMapper.xml
...cial-biz/src/main/resources/mapper/TPaymentInfoMapper.xml
+6
-0
SysUserDeptPermissionServiceImpl.java
.../admin/service/impl/SysUserDeptPermissionServiceImpl.java
+3
-0
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TPaymentInfoServiceImpl.java
View file @
93bfe73e
...
...
@@ -411,7 +411,7 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
}
else
{
redisUtil
.
set
(
key
,
user
.
getId
(),
600L
);
}
if
(
count
>
20000
&&
!
CommonConstants
.
ONE_STRING
.
equals
(
user
.
getId
()))
{
if
(
count
>
20000
0
&&
!
CommonConstants
.
ONE_STRING
.
equals
(
user
.
getId
()))
{
out
.
write
(
CommonConstants
.
SOCIAL_EXPORT_LIMIT
.
getBytes
(
"GBK"
));
out
.
close
();
redisUtil
.
remove
(
key
);
...
...
@@ -5258,14 +5258,13 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
&&
Common
.
isEmpty
(
searchVo
.
getSettleDomainName
())
&&
Common
.
isEmpty
(
searchVo
.
getSocialCreateMonth
())
&&
Common
.
isEmpty
(
searchVo
.
getSocialPayMonth
())
&&
Common
.
isEmpty
(
searchVo
.
getSocialProvince
())
&&
Common
.
isEmpty
(
searchVo
.
getCreateName
())
&&
null
==
searchVo
.
getCreateTimeEnd
()
&&
Common
.
isEmpty
(
searchVo
.
getSecondIndicatorBelong
())
&&
Common
.
isEmpty
(
searchVo
.
getPushStatus
())
&&
Common
.
isEmpty
(
searchVo
.
getLockStatus
());
// 单独处理户数据查询
if
(
f
alse
&&
Common
.
isEmpty
(
searchVo
.
getSocialProvince
())){
if
(
f
lag
&&
Common
.
isEmpty
(
searchVo
.
getSocialProvince
())){
// 只有社保户
if
(
Common
.
isNotNull
(
searchVo
.
getSocialHousehold
())
&&
!
Common
.
isNotNull
(
searchVo
.
getProvidentHousehold
())){
//特殊处理皖信户
...
...
@@ -5284,11 +5283,10 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
}
}
// 单独处理区域数据
if
(
false
&&
Common
.
isEmpty
(
searchVo
.
getSocialHousehold
())
&&
Common
.
isEmpty
(
searchVo
.
getProvidentHousehold
())
&&
!
Common
.
isEmpty
(
searchVo
.
getSocialProvince
())){
if
(
flag
&&
Common
.
isEmpty
(
searchVo
.
getSocialHousehold
())
&&
Common
.
isEmpty
(
searchVo
.
getProvidentHousehold
())){
if
((
Common
.
isEmpty
(
searchVo
.
getSocialCity
())
&&
"12"
.
equals
(
searchVo
.
getSocialProvince
()))
||(
Common
.
isEmpty
(
searchVo
.
getSocialTown
())
&&
"135"
.
equals
(
searchVo
.
getSocial
Province
()))){
||(
Common
.
isEmpty
(
searchVo
.
getSocialTown
())
&&
"135"
.
equals
(
searchVo
.
getSocial
City
()))){
return
R
.
ok
(
20001
);
}
}
...
...
@@ -5303,7 +5301,46 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
**/
@Override
public
R
<
Integer
>
sumSearchExportCheck
(
HttpServletResponse
response
,
TPaymentInfoSearchVo
searchVo
){
if
(
Common
.
isEmpty
(
searchVo
.
getEmpIdcard
())
boolean
flag
=
Common
.
isEmpty
(
searchVo
.
getEmpIdcard
())
&&
Common
.
isEmpty
(
searchVo
.
getSocialSecurityNo
())
&&
Common
.
isEmpty
(
searchVo
.
getUnitName
())
&&
Common
.
isEmpty
(
searchVo
.
getSettleDomainName
())
&&
Common
.
isEmpty
(
searchVo
.
getSocialCreateMonth
())
&&
Common
.
isEmpty
(
searchVo
.
getSocialPayMonth
())
&&
Common
.
isEmpty
(
searchVo
.
getCreateName
())
&&
null
==
searchVo
.
getCreateTimeEnd
()
&&
Common
.
isEmpty
(
searchVo
.
getSecondIndicatorBelong
())
&&
Common
.
isEmpty
(
searchVo
.
getPushStatus
())
&&
Common
.
isEmpty
(
searchVo
.
getLockStatus
());
// 单独处理户数据查询
if
(
flag
&&
Common
.
isEmpty
(
searchVo
.
getSocialProvince
())){
// 只有社保户
if
(
Common
.
isNotNull
(
searchVo
.
getSocialHousehold
())
&&
!
Common
.
isNotNull
(
searchVo
.
getProvidentHousehold
())){
//特殊处理皖信户
if
(
"安徽皖信人力资源管理有限公司"
.
equals
(
searchVo
.
getSocialHousehold
())){
return
R
.
ok
(
20001
);
}
return
R
.
ok
(
baseMapper
.
selectCountPaymentSearchInfoSocialByLimit
(
searchVo
));
}
//只有公积金户
if
(
Common
.
isNotNull
(
searchVo
.
getProvidentHousehold
())
&&
!
Common
.
isNotNull
(
searchVo
.
getSocialHousehold
())){
//特殊处理皖信户
if
(
"安徽皖信人力资源管理有限公司"
.
equals
(
searchVo
.
getProvidentHousehold
())){
return
R
.
ok
(
20001
);
}
return
R
.
ok
(
baseMapper
.
selectCountPaymentSearchInfoSocialByLimit
(
searchVo
));
}
}
// 单独处理区域数据
if
(
flag
&&
Common
.
isEmpty
(
searchVo
.
getSocialHousehold
())
&&
Common
.
isEmpty
(
searchVo
.
getProvidentHousehold
())){
if
((
Common
.
isEmpty
(
searchVo
.
getSocialCity
())
&&
"12"
.
equals
(
searchVo
.
getSocialProvince
()))
||(
Common
.
isEmpty
(
searchVo
.
getSocialTown
())
&&
"135"
.
equals
(
searchVo
.
getSocialCity
()))){
return
R
.
ok
(
20001
);
}
}
/*if (Common.isEmpty(searchVo.getEmpIdcard())
&& Common.isEmpty(searchVo.getUnitName())
&& Common.isEmpty(searchVo.getSettleDomainName())
&& Common.isEmpty(searchVo.getSocialCreateMonth())
...
...
@@ -5318,7 +5355,7 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
if (Common.isNotNull(searchVo.getProvidentHousehold())){
return R.ok(baseMapper.selectCountPaymentSearchInfoSocialByLimit(searchVo));
}
}
}
*/
return
R
.
ok
(
baseMapper
.
selectCountPaymentSearchInfo
(
searchVo
));
}
private
boolean
socialFlag
(
TPaymentInfoSearchVo
tPaymentInfo
){
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TPaymentInfoMapper.xml
View file @
93bfe73e
...
...
@@ -967,6 +967,9 @@
<if
test=
"tPaymentInfo.socialHousehold != null and tPaymentInfo.socialHousehold.trim() != ''"
>
AND a.SOCIAL_HOUSEHOLD = #{tPaymentInfo.socialHousehold}
</if>
<if
test=
"tPaymentInfo.providentHousehold != null and tPaymentInfo.providentHousehold.trim() != ''"
>
AND a.PROVIDENT_HOUSEHOLD = #{tPaymentInfo.providentHousehold}
</if>
<if
test=
"tPaymentInfo.socialPayMonth != null and tPaymentInfo.socialPayMonth.trim() != ''"
>
AND a.SOCIAL_PAY_MONTH = #{tPaymentInfo.socialPayMonth}
</if>
...
...
@@ -1163,6 +1166,9 @@
<if
test=
"tPaymentInfo.providentHousehold != null and tPaymentInfo.providentHousehold.trim() != ''"
>
AND a.PROVIDENT_HOUSEHOLD = #{tPaymentInfo.providentHousehold}
</if>
<if
test=
"tPaymentInfo.socialHousehold != null and tPaymentInfo.socialHousehold.trim() != ''"
>
AND a.SOCIAL_HOUSEHOLD = #{tPaymentInfo.socialHousehold}
</if>
<!-- 区域 默认精准查询 0 包含下级查询 1 开始 2023-03-02 fxj -->
<if
test=
'tPaymentInfo.areaFlag == null || tPaymentInfo.areaFlag == "1"'
>
<if
test=
"tPaymentInfo.socialTown == null"
>
...
...
yifu-upms/yifu-upms-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/admin/service/impl/SysUserDeptPermissionServiceImpl.java
View file @
93bfe73e
...
...
@@ -387,6 +387,9 @@ public class SysUserDeptPermissionServiceImpl extends ServiceImpl<SysUserDeptPer
if
(
Common
.
isNotNull
(
permission
)
&&
CommonConstants
.
ZERO_STRING
.
equals
(
permission
.
getUserType
())){
return
R
.
failed
(
UserDeptPermConstants
.
ADMIN_DISABLE_ERROR
);
}
if
(
Common
.
isEmpty
(
permission
)){
return
R
.
failed
(
CommonConstants
.
PARAM_IS_NOT_ERROR
);
}
if
(
baseMapper
.
deleteById
(
permission
.
getId
())
>
CommonConstants
.
ZERO_INT
){
return
R
.
ok
(
Boolean
.
TRUE
,
CommonConstants
.
RESULT_DATA_SUCESS
);
}
...
...
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