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
03295d35
Commit
03295d35
authored
Mar 20, 2025
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改审核结果判断条件
parent
f451572f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
single-manager/src/main/java/com/mortals/xhx/common/utils/CustomerWebSocketClient.java
...com/mortals/xhx/common/utils/CustomerWebSocketClient.java
+5
-10
No files found.
single-manager/src/main/java/com/mortals/xhx/common/utils/CustomerWebSocketClient.java
View file @
03295d35
...
...
@@ -89,22 +89,17 @@ public class CustomerWebSocketClient extends WebSocketClient {
JSONObject
result
=
JSONObject
.
parseObject
(
jsonObject
.
getString
(
"result"
));
MatterApplyDatumEntity
update
=
new
MatterApplyDatumEntity
();
update
.
setId
(
datumEntity
.
getId
());
if
(
result
.
getBooleanValue
(
"Consistency"
))
{
update
.
setReviewStatus
(
1
);
}
else
{
update
.
setReviewStatus
(
2
);
mandatoryFields
=
result
.
getString
(
"AdditionalComments"
);
apply
=
false
;
}
update
.
setReviewStatus
(
2
);
mandatoryFields
=
result
.
getString
(
"AdditionalComments"
);
apply
=
false
;
update
.
setUpdateTime
(
new
Date
());
matterApplyDatumService
.
update
(
update
);
}
else
{
}
else
if
(
jsonObject
.
getIntValue
(
"code"
)==
1
)
{
MatterApplyDatumEntity
update
=
new
MatterApplyDatumEntity
();
update
.
setId
(
datumEntity
.
getId
());
update
.
setReviewStatus
(
2
);
update
.
setReviewStatus
(
1
);
update
.
setUpdateTime
(
new
Date
());
matterApplyDatumService
.
update
(
update
);
apply
=
false
;
}
if
(
apply
){
MatterApplyEntity
applyEntity
=
matterApplyService
.
get
(
datumEntity
.
getApplyId
());
...
...
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