Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
36a680bd
Commit
36a680bd
authored
Jun 17, 2022
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
e7263365
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
AlertCalledController.java
...boot/module/jcs/biz/controller/AlertCalledController.java
+4
-4
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-jcs-biz/src/main/java/com/yeejoin/amos/boot/module/jcs/biz/controller/AlertCalledController.java
View file @
36a680bd
...
@@ -127,9 +127,9 @@ public class AlertCalledController extends BaseController {
...
@@ -127,9 +127,9 @@ public class AlertCalledController extends BaseController {
List
<
AlertFormValue
>
alertFormValue
=
alertCalledObjsDto
.
getAlertFormValue
();
List
<
AlertFormValue
>
alertFormValue
=
alertCalledObjsDto
.
getAlertFormValue
();
alertFormValue
.
forEach
(
e
->
{
alertFormValue
.
forEach
(
e
->
{
if
(
e
.
getFieldCode
().
equals
(
ALETR_TYPE_AID_STATUS
))
{
if
(
e
.
getFieldCode
().
equals
(
ALETR_TYPE_AID_STATUS
))
{
if
(
e
.
getFieldValue
Code
()
!=
null
)
{
if
(
e
.
getFieldValue
()
!=
null
)
{
if
(
e
.
getFieldValue
Code
().
contains
(
","
))
{
if
(
e
.
getFieldValue
().
contains
(
","
))
{
String
[]
split
=
e
.
getFieldValue
Code
().
split
(
","
);
String
[]
split
=
e
.
getFieldValue
().
split
(
","
);
StringBuilder
stringBuilder
=
new
StringBuilder
();
StringBuilder
stringBuilder
=
new
StringBuilder
();
for
(
int
i
=
0
;
i
<
split
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
split
.
length
;
i
++)
{
DataDictionary
hzxz
=
dataDictionaryService
.
getByCode
(
split
[
i
],
"HZXZ"
);
DataDictionary
hzxz
=
dataDictionaryService
.
getByCode
(
split
[
i
],
"HZXZ"
);
...
@@ -137,7 +137,7 @@ public class AlertCalledController extends BaseController {
...
@@ -137,7 +137,7 @@ public class AlertCalledController extends BaseController {
e
.
setFieldValue
(
stringBuilder
.
toString
());
e
.
setFieldValue
(
stringBuilder
.
toString
());
}
}
}
else
{
}
else
{
DataDictionary
hzxz
=
dataDictionaryService
.
getByCode
(
e
.
getFieldValue
Code
(),
"HZXZ"
);
DataDictionary
hzxz
=
dataDictionaryService
.
getByCode
(
e
.
getFieldValue
(),
"HZXZ"
);
e
.
setFieldValue
(
hzxz
.
getName
());
e
.
setFieldValue
(
hzxz
.
getName
());
}
}
}
}
...
...
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