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
d109508f
Commit
d109508f
authored
Jan 08, 2026
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
线上问题优化-fxj
parent
6e8f2427
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
6 deletions
+22
-6
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+2
-1
TDispatchInfoMapper.xml
...ial-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
+20
-5
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
View file @
d109508f
...
@@ -6111,7 +6111,6 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
...
@@ -6111,7 +6111,6 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
util
=
new
ExcelUtil
<>(
SocialHandleExportVo
.
class
);
util
=
new
ExcelUtil
<>(
SocialHandleExportVo
.
class
);
for
(
int
j
=
0
;
j
<
list
.
size
();
j
++)
{
for
(
int
j
=
0
;
j
<
list
.
size
();
j
++)
{
vo
=
list
.
get
(
j
);
vo
=
list
.
get
(
j
);
idString
.
add
(
vo
.
getId
());
util
.
convertEntity
(
vo
,
null
,
null
,
null
);
util
.
convertEntity
(
vo
,
null
,
null
,
null
);
if
(
Common
.
isNotNull
(
vo
.
getSocialHouseholdName
()))
{
if
(
Common
.
isNotNull
(
vo
.
getSocialHouseholdName
()))
{
if
(
socialHuMap
.
get
(
vo
.
getSocialHouseholdName
())
==
null
)
{
if
(
socialHuMap
.
get
(
vo
.
getSocialHouseholdName
())
==
null
)
{
...
@@ -6128,6 +6127,8 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
...
@@ -6128,6 +6127,8 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
exportLog
.
setUserId
(
userId
);
exportLog
.
setUserId
(
userId
);
exportLog
.
setUserName
(
userName
);
exportLog
.
setUserName
(
userName
);
logList
.
add
(
exportLog
);
logList
.
add
(
exportLog
);
//有办理人权限导出数据后更新导出标识
idString
.
add
(
vo
.
getId
());
}
}
}
}
}
}
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
View file @
d109508f
...
@@ -1506,11 +1506,26 @@
...
@@ -1506,11 +1506,26 @@
t_dispatch_info a
t_dispatch_info a
set a.EXPORT_SOCIAL_FLAG = 1
set a.EXPORT_SOCIAL_FLAG = 1
<where>
<where>
a.id in
1=1
<foreach
item=
"item"
collection=
"idsStr"
separator=
","
close=
")"
open=
"("
index=
"index"
>
<if
test=
"idsStr != null and idsStr.size > 0"
>
AND a.ID in
<foreach
item=
"item"
index=
"index"
collection=
"idsStr"
open=
"("
separator=
","
close=
")"
>
#{item}
#{item}
</foreach>
</foreach>
/>
</if>
<!--
<if test="tDispatchInfo == null or tDispatchInfo.createBy == null or tDispatchInfo.createBy.trim() == ''">
and 1=2
</if>
<if test="tDispatchInfo != null and tDispatchInfo.createBy != null and tDispatchInfo.createBy.trim() != ''">
AND (a.SOCIAL_HOUSEHOLD_NAME IS NOT NULL
AND a.SOCIAL_HOUSEHOLD_NAME IN (
SELECT SOCIAL_HOUSEHOLD FROM t_socialfund_house_res
WHERE user_id = #{tDispatchInfo.createBy} AND STATUS = '0'
AND AUTH_TYPE = '1' AND HOUSE_NAME_TYPE = '0'
)
)
</if>-->
</where>
</where>
</update>
</update>
...
...
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