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
c3b692e5
Commit
c3b692e5
authored
Apr 07, 2026
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
社保公积金办理失败派单成功清空错误信息-fxj
parent
69b535aa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+5
-2
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
View file @
c3b692e5
...
@@ -1163,11 +1163,14 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
...
@@ -1163,11 +1163,14 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
if
(
Common
.
isNotNull
(
dispatch
.
getPreId
()))
{
if
(
Common
.
isNotNull
(
dispatch
.
getPreId
()))
{
TDispatchInfoPre
dispatchInfoPre
=
dispatchInfoPreMapper
.
selectById
(
dispatch
.
getPreId
());
TDispatchInfoPre
dispatchInfoPre
=
dispatchInfoPreMapper
.
selectById
(
dispatch
.
getPreId
());
if
(
Common
.
isNotNull
(
dispatchInfoPre
))
{
if
(
Common
.
isNotNull
(
dispatchInfoPre
))
{
// 当状态从派单失败(2)变更为待审核(3)时,清空错误信息
if
(
CommonConstants
.
TWO_STRING
.
equals
(
dispatchInfoPre
.
getProcessStatus
()))
{
dispatchInfoPre
.
setErrorInfo
(
null
);
dispatchInfoPre
.
setErrorTime
(
null
);
}
dispatchInfoPre
.
setProcessStatus
(
CommonConstants
.
THREE_STRING
);
dispatchInfoPre
.
setProcessStatus
(
CommonConstants
.
THREE_STRING
);
dispatchInfoPre
.
setDispatcherId
(
socialFund
.
getDispatchId
());
dispatchInfoPre
.
setDispatcherId
(
socialFund
.
getDispatchId
());
dispatchInfoPre
.
setSocialFundId
(
socialFund
.
getId
());
dispatchInfoPre
.
setSocialFundId
(
socialFund
.
getId
());
dispatchInfoPre
.
setErrorInfo
(
null
);
dispatchInfoPre
.
setErrorTime
(
null
);
dispatchInfoPreMapper
.
updateById
(
dispatchInfoPre
);
dispatchInfoPreMapper
.
updateById
(
dispatchInfoPre
);
}
}
}
}
...
...
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