Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
single-matter
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
single-matter
Commits
5520a549
Commit
5520a549
authored
Apr 01, 2025
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测试bug修改
parent
a04f006a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
single-manager/src/main/java/com/mortals/xhx/common/utils/CustomerWebSocketClient.java
...com/mortals/xhx/common/utils/CustomerWebSocketClient.java
+11
-0
No files found.
single-manager/src/main/java/com/mortals/xhx/common/utils/CustomerWebSocketClient.java
View file @
5520a549
...
...
@@ -95,6 +95,8 @@ public class CustomerWebSocketClient extends WebSocketClient {
update
.
setUpdateTime
(
new
Date
());
matterApplyDatumService
.
update
(
update
);
}
else
if
(
jsonObject
.
getIntValue
(
"code"
)==
1
){
JSONObject
result
=
JSONObject
.
parseObject
(
jsonObject
.
getString
(
"result"
));
mandatoryFields
=
result
.
getString
(
"AdditionalComments"
);
MatterApplyDatumEntity
update
=
new
MatterApplyDatumEntity
();
update
.
setId
(
datumEntity
.
getId
());
update
.
setReviewStatus
(
1
);
...
...
@@ -111,6 +113,15 @@ public class CustomerWebSocketClient extends WebSocketClient {
}
update
.
setUpdateTime
(
new
Date
());
matterApplyService
.
getDao
().
update
(
update
);
}
else
{
MatterApplyEntity
applyEntity
=
matterApplyService
.
get
(
datumEntity
.
getApplyId
());
MatterApplyEntity
update
=
new
MatterApplyEntity
();
update
.
setId
(
applyEntity
.
getId
());
if
(
StringUtils
.
isNotEmpty
(
mandatoryFields
))
{
update
.
setAdvisement
(
applyEntity
.
getAdvisement
()
+
mandatoryFields
+
";"
);
}
update
.
setUpdateTime
(
new
Date
());
matterApplyService
.
getDao
().
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