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
a561c46b
Commit
a561c46b
authored
Sep 05, 2023
by
hongguangwu
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.5.8' into MVP1.5.8
parents
3c651f95
f249ec74
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
2 deletions
+28
-2
SocialHandleSearchVo.java
...fu/cloud/plus/v1/yifu/social/vo/SocialHandleSearchVo.java
+8
-0
TDispatchInfoController.java
...us/v1/yifu/social/controller/TDispatchInfoController.java
+5
-0
TDispatchInfoMapper.xml
...ial-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
+15
-2
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/SocialHandleSearchVo.java
View file @
a561c46b
...
@@ -119,4 +119,12 @@ public class SocialHandleSearchVo extends TDispatchInfo {
...
@@ -119,4 +119,12 @@ public class SocialHandleSearchVo extends TDispatchInfo {
@Schema
(
description
=
"导出的表头的Set"
)
@Schema
(
description
=
"导出的表头的Set"
)
private
Set
<
String
>
exportFields
;
private
Set
<
String
>
exportFields
;
/**
* 审核状态 0 通过 1 不通过
*/
@ExcelAttribute
(
name
=
"审核状态"
)
@ExcelIgnore
@Schema
(
description
=
"审核状态"
)
private
String
auditStatus
;
}
}
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/controller/TDispatchInfoController.java
View file @
a561c46b
...
@@ -774,6 +774,10 @@ public class TDispatchInfoController {
...
@@ -774,6 +774,10 @@ public class TDispatchInfoController {
searchVo
.
setAuthSql
(
searchVo
.
getAuthSql
().
replace
(
CommonConstants
.
A_DEPT_ID
,
"a.SETTLE_DOMAIN"
));
searchVo
.
setAuthSql
(
searchVo
.
getAuthSql
().
replace
(
CommonConstants
.
A_DEPT_ID
,
"a.SETTLE_DOMAIN"
));
}
}
searchVo
.
setCreateBy
(
user
.
getId
());
searchVo
.
setCreateBy
(
user
.
getId
());
// 默认审核通过的数据 fxj 20230904
if
(
Common
.
isEmpty
(
searchVo
.
getAuditStatus
())){
searchVo
.
setAuditStatus
(
CommonConstants
.
ZERO_STRING
);
}
tDispatchInfoService
.
doexportSocialRecordNew
(
response
,
searchVo
);
tDispatchInfoService
.
doexportSocialRecordNew
(
response
,
searchVo
);
}
}
...
@@ -796,6 +800,7 @@ public class TDispatchInfoController {
...
@@ -796,6 +800,7 @@ public class TDispatchInfoController {
searchVo
.
setAuthSql
(
searchVo
.
getAuthSql
().
replace
(
CommonConstants
.
A_DEPT_ID
,
"a.SETTLE_DOMAIN"
));
searchVo
.
setAuthSql
(
searchVo
.
getAuthSql
().
replace
(
CommonConstants
.
A_DEPT_ID
,
"a.SETTLE_DOMAIN"
));
}
}
searchVo
.
setCreateBy
(
user
.
getId
());
searchVo
.
setCreateBy
(
user
.
getId
());
// 默认审核通过的数据 fxj 20230904
tDispatchInfoService
.
doexportSocialPensionRecord
(
response
,
searchVo
);
tDispatchInfoService
.
doexportSocialPensionRecord
(
response
,
searchVo
);
}
}
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
View file @
a561c46b
...
@@ -1915,7 +1915,13 @@
...
@@ -1915,7 +1915,13 @@
<sql
id=
"where_getSocialDisRecord"
>
<sql
id=
"where_getSocialDisRecord"
>
a.DELETE_FLAG = 0
a.DELETE_FLAG = 0
AND a.social_id is not null
AND a.social_id is not null
AND a.STATUS in ('2','4')
<!-- dispatch-status 未提交1待审核2审核通过3审核不通过4办理完成5待SSC审核 -->
<if
test=
"tDispatchInfo.auditStatus != null and tDispatchInfo.auditStatus.trim() == '0'"
>
AND a.STATUS in ('2','4')
</if>
<if
test=
"tDispatchInfo.auditStatus != null and tDispatchInfo.auditStatus.trim() == '1'"
>
AND a.STATUS ='1'
</if>
AND a.DISPATCH_ITEM like concat('%','医疗','%')
AND a.DISPATCH_ITEM like concat('%','医疗','%')
<if
test=
"tDispatchInfo != null"
>
<if
test=
"tDispatchInfo != null"
>
<if
test=
"tDispatchInfo.socialHouseholdName != null and tDispatchInfo.socialHouseholdName.trim() != ''"
>
<if
test=
"tDispatchInfo.socialHouseholdName != null and tDispatchInfo.socialHouseholdName.trim() != ''"
>
...
@@ -1993,7 +1999,14 @@
...
@@ -1993,7 +1999,14 @@
<sql
id=
"where_getSocialPersionDisRecord"
>
<sql
id=
"where_getSocialPersionDisRecord"
>
a.DELETE_FLAG = 0
a.DELETE_FLAG = 0
AND a.social_id is not null
AND a.social_id is not null
AND a.STATUS in ('2','4')
<!-- dispatch-status 未提交1待审核2审核通过3审核不通过4办理完成5待SSC审核 -->
<if
test=
"tDispatchInfo.auditStatus != null and tDispatchInfo.auditStatus.trim() == '0'"
>
AND a.STATUS in ('2','4')
</if>
<if
test=
"tDispatchInfo.auditStatus != null and tDispatchInfo.auditStatus.trim() == '1'"
>
AND a.STATUS ='1'
</if>
AND (a.DISPATCH_ITEM like concat('%','工伤','%') or a.DISPATCH_ITEM like concat('%','养老','%') or a.DISPATCH_ITEM like concat('%','失业','%'))
AND (a.DISPATCH_ITEM like concat('%','工伤','%') or a.DISPATCH_ITEM like concat('%','养老','%') or a.DISPATCH_ITEM like concat('%','失业','%'))
<if
test=
"tDispatchInfo != null"
>
<if
test=
"tDispatchInfo != null"
>
<if
test=
"tDispatchInfo.socialHouseholdName != null and tDispatchInfo.socialHouseholdName.trim() != ''"
>
<if
test=
"tDispatchInfo.socialHouseholdName != null and tDispatchInfo.socialHouseholdName.trim() != ''"
>
...
...
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